Changes in src/main.cc [bccd70a:2c38b15]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
rbccd70a r2c38b15 28 28 #include <list> // for list 29 29 #include <string> // for char_traits, operator<< 30 31 using namespace std;32 30 33 31 #include "AST/Convert.hpp" … … 88 86 #include "Virtual/VirtualDtor.hpp" // for implementVirtDtors 89 87 88 using namespace std; 89 90 90 static void NewPass( const char * const name ) { 91 91 Stats::Heap::newPass( name ); … … 335 335 336 336 PASS( "Fix Qualified Types", Validate::fixQualifiedTypes, transUnit ); 337 PASS( "Eliminate Typedef", Validate::eliminateTypedef, transUnit ); 337 338 PASS( "Hoist Struct", Validate::hoistStruct, transUnit ); 338 PASS( "Eliminate Typedef", Validate::eliminateTypedef, transUnit );339 339 PASS( "Validate Generic Parameters", Validate::fillGenericParameters, transUnit ); 340 340 PASS( "Translate Dimensions", Validate::translateDimensionParameters, transUnit );
Note: See TracChangeset
for help on using the changeset viewer.