Changes in src/SynTree/ObjectDecl.cc [a7c90d4:ddfd945]
- File:
-
- 1 edited
-
src/SynTree/ObjectDecl.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/ObjectDecl.cc
ra7c90d4 rddfd945 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T ue Mar 7 07:55:24201713 // Update Count : 5 412 // Last Modified On : Thu Mar 16 08:34:27 2017 13 // Update Count : 59 14 14 // 15 15 … … 22 22 #include "Statement.h" 23 23 24 ObjectDecl::ObjectDecl( const std::string &name, DeclarationNode::StorageClasses scs, LinkageSpec::Spec linkage, Expression *bitfieldWidth, Type *type, Initializer *init, const std::list< Attribute * > attributes, DeclarationNode::FuncSpecifiers fs )24 ObjectDecl::ObjectDecl( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, Expression *bitfieldWidth, Type *type, Initializer *init, const std::list< Attribute * > attributes, Type::FuncSpecifiers fs ) 25 25 : Parent( name, scs, linkage, attributes, fs ), type( type ), init( init ), bitfieldWidth( bitfieldWidth ) { 26 26 } … … 47 47 printAll( get_attributes(), os, indent ); 48 48 49 DeclarationNode::print_StorageClass( os, get_storageClasses());49 get_storageClasses().print( os ); 50 50 51 51 if ( get_type() ) { … … 81 81 // xxx - should printShort print attributes? 82 82 83 DeclarationNode::print_StorageClass( os, get_storageClasses());83 get_storageClasses().print( os ); 84 84 85 85 if ( get_type() ) {
Note:
See TracChangeset
for help on using the changeset viewer.