Changeset 1f7dc61
- Timestamp:
- Feb 11, 2022, 12:16:52 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- 6668a3e
- Parents:
- 5910fc0
- Location:
- src
- Files:
-
- 10 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 -
src/CodeGen/FixNames.h
r5910fc0 r1f7dc61 20 20 class Declaration; 21 21 namespace ast { 22 structTranslationUnit;22 class TranslationUnit; 23 23 } 24 24 -
src/Common/CodeLocationTools.hpp
r5910fc0 r1f7dc61 17 17 18 18 namespace ast { 19 structTranslationUnit;19 class TranslationUnit; 20 20 } 21 21 -
src/Common/ResolvProtoDump.hpp
r5910fc0 r1f7dc61 17 17 18 18 namespace ast { 19 structTranslationUnit;19 class TranslationUnit; 20 20 } 21 21 -
src/InitTweak/FixInit.h
r5910fc0 r1f7dc61 21 21 class Declaration; 22 22 namespace ast { 23 structTranslationUnit;23 class TranslationUnit; 24 24 } 25 25 -
src/MakeLibCfa.h
r5910fc0 r1f7dc61 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // MakeLibCfa.h -- 7 // MakeLibCfa.h -- 8 8 // 9 9 // Author : Richard C. Bilson … … 20 20 class Declaration; 21 21 namespace ast { 22 structTranslationUnit;22 class TranslationUnit; 23 23 } 24 24 -
src/ResolvExpr/Resolver.h
r5910fc0 r1f7dc61 35 35 class StmtExpr; 36 36 class SymbolTable; 37 structTranslationUnit;37 class TranslationUnit; 38 38 class Type; 39 39 class TypeEnvironment; … … 72 72 ast::ptr< ast::Init > resolveCtorInit( 73 73 const ast::ConstructorInit * ctorInit, const ast::SymbolTable & symtab ); 74 /// Resolves a statement expression 74 /// Resolves a statement expression 75 75 const ast::Expr * resolveStmtExpr( 76 76 const ast::StmtExpr * stmtExpr, const ast::SymbolTable & symtab );
Note: See TracChangeset
for help on using the changeset viewer.