diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2012-08-03 12:30:01 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2012-08-03 12:30:01 +0000 |
| commit | 3601b796e51bd4a26383ac972ce2ccf575171979 (patch) | |
| tree | b2a1b29fad27ea94a65bbdd3da41612c9ceaf116 /src/runtime/c/teyjus/system | |
| parent | 7f6c248bf1623a3e0ae5b1f4d7885bd4a54edc6e (diff) | |
fix some warnings in teyjus
Diffstat (limited to 'src/runtime/c/teyjus/system')
| -rw-r--r-- | src/runtime/c/teyjus/system/error.h | 6 |
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 } */ |
