diff options
author | John Hodge <tpg@mutabah.net> | 2016-06-24 16:54:11 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-06-24 16:54:11 +0800 |
commit | a95239bd0b7c1074d1260738a93082f49099dac4 (patch) | |
tree | 9e405a14f5a909cc6293668c0586c10c41e93f00 /src/main.cpp | |
parent | 7ec056fbe76eccfe31933bb12336bc033b71335b (diff) | |
download | mrust-a95239bd0b7c1074d1260738a93082f49099dac4.tar.gz |
HIR Typecheck - Handling of `impl Trait {}` blocks properly
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp index 90358661..85307663 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -203,11 +203,11 @@ int main(int argc, char *argv[]) ::std::cerr << "Parser Error: " << e.what() << ::std::endl;
return 2;
}
- catch(const ::std::exception& e)
- {
- ::std::cerr << "Misc Error: " << e.what() << ::std::endl;
- return 2;
- }
+ //catch(const ::std::exception& e)
+ //{
+ // ::std::cerr << "Misc Error: " << e.what() << ::std::endl;
+ // return 2;
+ //}
//catch(const char* e)
//{
// ::std::cerr << "Internal Compiler Error: " << e << ::std::endl;
|