Changes in src/InitTweak/FixInitNew.cpp [b29a1e8:fb4dc28]
- File:
-
- 1 edited
-
src/InitTweak/FixInitNew.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInitNew.cpp
rb29a1e8 rfb4dc28 22 22 #include "AST/SymbolTable.hpp" 23 23 #include "AST/Type.hpp" 24 #include "CodeGen/OperatorTable.h" // for isConstructor, isCtorDtor, isD... 24 #include "CodeGen/GenType.h" // for genPrettyType 25 #include "CodeGen/OperatorTable.h" 26 #include "Common/PassVisitor.h" // for PassVisitor, WithStmtsToAdd 25 27 #include "Common/SemanticError.h" // for SemanticError 26 28 #include "Common/ToString.hpp" // for toCString … … 31 33 #include "ResolvExpr/Resolver.h" // for findVoidExpression 32 34 #include "ResolvExpr/Unify.h" // for typesCompatible 35 #include "SymTab/Autogen.h" // for genImplicitCall 33 36 #include "SymTab/GenImplicitCall.hpp" // for genImplicitCall 37 #include "SymTab/Indexer.h" // for Indexer 38 #include "SymTab/Mangler.h" // for Mangler 39 #include "SynTree/LinkageSpec.h" // for C, Spec, Cforall, isBuiltin 40 #include "SynTree/Attribute.h" // for Attribute 41 #include "SynTree/Constant.h" // for Constant 42 #include "SynTree/Declaration.h" // for ObjectDecl, FunctionDecl, Decl... 43 #include "SynTree/Expression.h" // for UniqueExpr, VariableExpr, Unty... 44 #include "SynTree/Initializer.h" // for ConstructorInit, SingleInit 45 #include "SynTree/Label.h" // for Label, operator< 46 #include "SynTree/Mutator.h" // for mutateAll, Mutator, maybeMutate 47 #include "SynTree/Statement.h" // for ExprStmt, CompoundStmt, Branch... 48 #include "SynTree/Type.h" // for Type, Type::StorageClasses 49 #include "SynTree/TypeSubstitution.h" // for TypeSubstitution, operator<< 50 #include "SynTree/DeclReplacer.h" // for DeclReplacer 51 #include "SynTree/Visitor.h" // for acceptAll, maybeAccept 52 #include "Validate/FindSpecialDecls.h" // for dtorStmt, dtorStructDestroy 34 53 35 54 extern bool ctordtorp; // print all debug
Note:
See TracChangeset
for help on using the changeset viewer.