fix some warnings in teyjus

This commit is contained in:
kr.angelov
2012-08-03 12:30:01 +00:00
parent 7f6c248bf1
commit 3601b796e5
7 changed files with 19 additions and 20 deletions

View File

@@ -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
}
*/