Changes in src/AST/Fwd.hpp [b3a0df6:fb2bde4]
- File:
-
- 1 edited
-
src/AST/Fwd.hpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Fwd.hpp
rb3a0df6 rfb2bde4 10 10 // Created On : Wed May 8 16:05:00 2019 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : Thr Jul 23 14:15:00 202013 // Update Count : 212 // Last Modified On : Mon Jun 24 09:48:00 2019 13 // Update Count : 1 14 14 // 15 15 … … 53 53 class CatchStmt; 54 54 class FinallyStmt; 55 class SuspendStmt;56 55 class WaitForStmt; 57 56 class WithStmt; … … 107 106 class QualifiedType; 108 107 class FunctionType; 109 class BaseInstType; 110 template<typename decl_t> class SueInstType; 111 using StructInstType = SueInstType<StructDecl>; 112 using UnionInstType = SueInstType<UnionDecl>; 113 using EnumInstType = SueInstType<EnumDecl>; 108 class ReferenceToType; 109 class StructInstType; 110 class UnionInstType; 111 class EnumInstType; 114 112 class TraitInstType; 115 113 class TypeInstType; … … 137 135 typedef unsigned int UniqueId; 138 136 139 struct TranslationUnit;140 // TODO: Get from the TranslationUnit:141 extern ptr<Type> sizeType;142 extern const FunctionDecl * dereferenceOperator;143 extern const StructDecl * dtorStruct;144 extern const FunctionDecl * dtorStructDestroy;145 146 137 }
Note:
See TracChangeset
for help on using the changeset viewer.