Changes in src/SynTree/DeclStmt.cc [ba3706f:50377a4]
- File:
-
- 1 edited
-
src/SynTree/DeclStmt.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/DeclStmt.cc
rba3706f r50377a4 23 23 #include "SynTree/Label.h" // for Label 24 24 25 DeclStmt::DeclStmt( Declaration *decl ) : Statement(), decl( decl ) {25 DeclStmt::DeclStmt( std::list<Label> labels, Declaration *decl ) : Statement( labels ), decl( decl ) { 26 26 } 27 27
Note:
See TracChangeset
for help on using the changeset viewer.