Changeset 896737b for src/AST/Stmt.hpp
- Timestamp:
- May 17, 2019, 12:10:09 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 74dbbf6
- Parents:
- 10a1225 (diff), d66e7b7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Stmt.hpp
r10a1225 r896737b 10 10 // Created On : Wed May 8 13:00:00 2019 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Wed May 16 12:20:00 201913 // Update Count : 312 // Last Modified On : Fri May 17 10:03:00 2019 13 // Update Count : 4 14 14 // 15 15 … … 54 54 std::list<ptr<Stmt>> kids; 55 55 56 CompoundStmt(const CodeLocation & loc, std::list<ptr<Stmt>> && ks = {} ) 57 : Stmt(loc), kids(std::move(ks)) {} 56 CompoundStmt(const CodeLocation & loc, std::list<ptr<Stmt>> && ks = {}, 57 std::vector<Label>&& labels = {} ) 58 : Stmt(loc, std::move(labels)), kids(std::move(ks)) {} 58 59 59 60 CompoundStmt( const CompoundStmt& o );
Note: See TracChangeset
for help on using the changeset viewer.