Changes in src/SymTab/Autogen.cc [be9288a:6ea87486]
- File:
-
- 1 edited
-
src/SymTab/Autogen.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Autogen.cc
rbe9288a r6ea87486 13 13 // Update Count : 62 14 14 // 15 16 #include <list> 17 #include <iterator> 18 #include "SynTree/Visitor.h" 19 #include "SynTree/Type.h" 20 #include "SynTree/Statement.h" 21 #include "SynTree/TypeSubstitution.h" 22 #include "Common/utility.h" 23 #include "AddVisit.h" 24 #include "MakeLibCfa.h" 15 25 #include "Autogen.h" 16 17 #include <cstddef> // for NULL 18 #include <algorithm> // for count_if 19 #include <cassert> // for safe_dynamic_cast, assert, assertf 20 #include <iterator> // for back_insert_iterator, back_inserter 21 #include <list> // for list, _List_iterator, list<>::iter... 22 #include <set> // for set, _Rb_tree_const_iterator 23 #include <utility> // for pair 24 #include <vector> // for vector 25 26 #include "AddVisit.h" // for addVisit 27 #include "Common/ScopedMap.h" // for ScopedMap 28 #include "GenPoly/DeclMutator.h" // for DeclMutator 29 #include "GenPoly/ScopedSet.h" // for ScopedSet 30 #include "Parser/LinkageSpec.h" // for AutoGen, Intrinsic, Spec 31 #include "SymTab/Mangler.h" // for mangleType 32 #include "SynTree/Statement.h" // for SwitchStmt (ptr only), CompoundStmt 33 #include "SynTree/Type.h" // for Type, ArrayType, Type::StorageClasses 34 #include "SynTree/Visitor.h" // for Visitor 26 #include "GenPoly/ScopedSet.h" 27 #include "Common/ScopedMap.h" 28 #include "SymTab/Mangler.h" 29 #include "GenPoly/DeclMutator.h" 35 30 36 31 namespace SymTab { … … 517 512 // Make function polymorphic in same parameters as generic union, if applicable 518 513 const std::list< TypeDecl* > & typeParams = aggregateDecl->get_parameters(); // List of type variables to be placed on the generated functions 519 514 520 515 // default ctor/dtor need only first parameter 521 516 // void ?{}(T *); void ^?{}(T *);
Note:
See TracChangeset
for help on using the changeset viewer.