Changes in src/main.cc [f26421f:3dd8f42]
- File:
-
- 1 edited
-
src/main.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/main.cc
rf26421f r3dd8f42 40 40 #include "CodeTools/TrackLoc.h" // for fillLocations 41 41 #include "Common/CodeLocationTools.hpp" // for forceFillCodeLocations 42 #include "Common/CompilerError.h" // for CompilerError 42 43 #include "Common/DeclStats.hpp" // for printDeclStats 43 44 #include "Common/ResolvProtoDump.hpp" // for dumpAsResolverProto 44 45 #include "Common/Stats.h" // for Stats 46 #include "Common/UnimplementedError.h" // for UnimplementedError 45 47 #include "Common/utility.h" // for deleteAll, filter, printAll 46 48 #include "Concurrency/Actors.hpp" // for implementActors … … 478 480 } // if 479 481 return EXIT_FAILURE; 482 } catch ( UnimplementedError & e ) { 483 cout << "Sorry, " << e.get_what() << " is not currently implemented" << endl; 484 if ( output != &cout ) { 485 delete output; 486 } // if 487 return EXIT_FAILURE; 488 } catch ( CompilerError & e ) { 489 cerr << "Compiler Error: " << e.get_what() << endl; 490 cerr << "(please report bugs to [REDACTED])" << endl; 491 if ( output != &cout ) { 492 delete output; 493 } // if 494 return EXIT_FAILURE; 480 495 } catch ( std::bad_alloc & ) { 481 496 cerr << "*cfa-cpp compilation error* std::bad_alloc" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.