Changeset 8d25360 for src/Parser/TypeData.cc
- Timestamp:
- Feb 13, 2019, 12:24:12 PM (4 years ago)
- Branches:
- no_list
- Children:
- 80eefcb
- Parents:
- bbbc067
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/TypeData.cc
rbbbc067 r8d25360 887 887 888 888 889 NamedTypeDecl * buildSymbolic( const TypeData * td, std::vector< Attribute * >attributes, const string & name, Type::StorageClasses scs, LinkageSpec::Spec linkage ) {889 NamedTypeDecl * buildSymbolic( const TypeData * td, const std::vector< Attribute * > & attributes, const string & name, Type::StorageClasses scs, LinkageSpec::Spec linkage ) { 890 890 assert( td->kind == TypeData::Symbolic ); 891 891 NamedTypeDecl * ret; … … 947 947 948 948 949 Declaration * buildDecl( const TypeData * td, const string &name, Type::StorageClasses scs, Expression * bitfieldWidth, Type::FuncSpecifiers funcSpec, LinkageSpec::Spec linkage, Expression *asmName, Initializer * init, std::vector< Attribute * >attributes ) {949 Declaration * buildDecl( const TypeData * td, const string &name, Type::StorageClasses scs, Expression * bitfieldWidth, Type::FuncSpecifiers funcSpec, LinkageSpec::Spec linkage, Expression *asmName, Initializer * init, const std::vector< Attribute * > & attributes ) { 950 950 if ( td->kind == TypeData::Function ) { 951 951 if ( td->function.idList ) { // KR function ?
Note: See TracChangeset
for help on using the changeset viewer.