Changeset e3e16bc for src/Parser/DeclarationNode.cc
- Timestamp:
- Sep 13, 2017, 2:34:55 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 982832e
- Parents:
- 9f5ecf5
- File:
-
- 1 edited
-
src/Parser/DeclarationNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/DeclarationNode.cc
r9f5ecf5 re3e16bc 14 14 // 15 15 16 #include <cassert> // for assert, assertf, s afe_dynamic_cast16 #include <cassert> // for assert, assertf, strict_dynamic_cast 17 17 #include <iterator> // for back_insert_iterator 18 18 #include <list> // for list … … 1027 1027 1028 1028 if ( asmStmt ) { 1029 return new AsmDecl( s afe_dynamic_cast<AsmStmt *>( asmStmt->build() ) );1029 return new AsmDecl( strict_dynamic_cast<AsmStmt *>( asmStmt->build() ) ); 1030 1030 } // if 1031 1031
Note:
See TracChangeset
for help on using the changeset viewer.