Commit 6baed95d authored by Michael Arntzenius's avatar Michael Arntzenius

remove raiseRaw debug spew, it's confusing the compiler

parent f3b66180
......@@ -56,16 +56,6 @@ void raiseRaw(const ExcInfo& e) {
assert(gc::isValidGCObject(e.value));
assert(gc::isValidGCObject(e.traceback));
if (VERBOSITY("stacktrace")) {
try {
std::string st = str(e.type)->s.str();
std::string sv = str(e.value)->s.str();
printf("---- raiseRaw() called with %s: %s\n", st.c_str(), sv.c_str());
} catch (ExcInfo e) {
printf("---- raiseRaw() called and WTFed\n");
}
}
throw e;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment