summaryrefslogtreecommitdiff
path: root/src/runtime/c/teyjus/system
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/c/teyjus/system')
-rw-r--r--src/runtime/c/teyjus/system/error.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/c/teyjus/system/error.h b/src/runtime/c/teyjus/system/error.h
index 6fee02113..2db993270 100644
--- a/src/runtime/c/teyjus/system/error.h
+++ b/src/runtime/c/teyjus/system/error.h
@@ -114,11 +114,11 @@ EM_TRY
}
EM_CATCH
{
- un_foo(); /* clean up *
+ un_foo(); // clean up
if (EM_CurrentExnType == EM_FOOBAR)
- printf("foobar!"); /* stop the error here *
+ printf("foobar!"); // stop the error here
else
- EM_RETHROW(); /* let a later handler handle it *
+ EM_RETHROW(); // let a later handler handle it
}
*/