- Timestamp:
- Nov 13, 2020, 5:02:43 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a0ba5e6
- Parents:
- ac12f1f
- Location:
- src/AST
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.hpp
rac12f1f ra056f56 20 20 class Declaration; 21 21 namespace ast { 22 classTranslationUnit;22 struct TranslationUnit; 23 23 }; 24 24 -
src/AST/Fwd.hpp
rac12f1f ra056f56 137 137 typedef unsigned int UniqueId; 138 138 139 classTranslationUnit;139 struct TranslationUnit; 140 140 // TODO: Get from the TranslationUnit: 141 141 extern Type * sizeType; -
src/AST/Pass.proto.hpp
rac12f1f ra056f56 23 23 class Pass; 24 24 25 classTranslationUnit;25 struct TranslationUnit; 26 26 27 27 struct PureVisitor; … … 274 274 template< typename core_t > 275 275 static auto on_error (core_t & core, ptr<Decl> & decl, int) -> decltype(core.on_error(decl)) { 276 return core.on_error(decl); 276 return core.on_error(decl); 277 277 } 278 278
Note: See TracChangeset
for help on using the changeset viewer.