Changes in src/SynTree/ObjectDecl.cc [8b7ee09:f9cebb5]
- File:
-
- 1 edited
-
src/SynTree/ObjectDecl.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/ObjectDecl.cc
r8b7ee09 rf9cebb5 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Thu Aug 18 23:50:33201613 // Update Count : 3 111 // Last Modified By : Rob Schluntz 12 // Last Modified On : Fri May 13 13:23:32 2016 13 // Update Count : 30 14 14 // 15 15 … … 22 22 #include "Statement.h" 23 23 24 ObjectDecl::ObjectDecl( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec:: Speclinkage, Expression *bitfieldWidth, Type *type, Initializer *init, const std::list< Attribute * > attributes, bool isInline, bool isNoreturn )24 ObjectDecl::ObjectDecl( const std::string &name, DeclarationNode::StorageClass sc, LinkageSpec::Type linkage, Expression *bitfieldWidth, Type *type, Initializer *init, const std::list< Attribute * > attributes, bool isInline, bool isNoreturn ) 25 25 : Parent( name, sc, linkage, attributes ), type( type ), init( init ), bitfieldWidth( bitfieldWidth ) { 26 26 set_isInline( isInline );
Note:
See TracChangeset
for help on using the changeset viewer.