- Timestamp:
- Feb 11, 2022, 12:16:52 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- 6668a3e
- Parents:
- 5910fc0
- Location:
- src/AST
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.hpp
r5910fc0 r1f7dc61 20 20 class Declaration; 21 21 namespace ast { 22 structTranslationUnit;22 class TranslationUnit; 23 23 }; 24 24 -
src/AST/Fwd.hpp
r5910fc0 r1f7dc61 140 140 typedef unsigned int UniqueId; 141 141 142 structTranslationUnit;142 class TranslationUnit; 143 143 // TODO: Get from the TranslationUnit: 144 144 extern ptr<Type> sizeType; -
src/AST/Pass.proto.hpp
r5910fc0 r1f7dc61 23 23 class Pass; 24 24 25 structTranslationUnit;25 class TranslationUnit; 26 26 27 27 struct PureVisitor; -
src/AST/TranslationUnit.hpp
r5910fc0 r1f7dc61 23 23 namespace ast { 24 24 25 struct TranslationUnit { 25 class TranslationUnit { 26 public: 26 27 std::list< ptr< Decl > > decls; 27 28
Note:
See TracChangeset
for help on using the changeset viewer.