Changes in src/SynTree/ObjectDecl.cc [ddfd945:a7c90d4]
- File:
-
- 1 edited
-
src/SynTree/ObjectDecl.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/ObjectDecl.cc
rddfd945 ra7c90d4 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Mar 16 08:34:27201713 // Update Count : 5 912 // Last Modified On : Tue Mar 7 07:55:24 2017 13 // Update Count : 54 14 14 // 15 15 … … 22 22 #include "Statement.h" 23 23 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 )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 ) 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 get_storageClasses().print( os);49 DeclarationNode::print_StorageClass( os, get_storageClasses() ); 50 50 51 51 if ( get_type() ) { … … 81 81 // xxx - should printShort print attributes? 82 82 83 get_storageClasses().print( os);83 DeclarationNode::print_StorageClass( os, get_storageClasses() ); 84 84 85 85 if ( get_type() ) {
Note:
See TracChangeset
for help on using the changeset viewer.