diff options
Diffstat (limited to 'c')
-rw-r--r-- | c/main.cpp | 4 | ||||
-rw-r--r-- | c/pl.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -69,9 +69,9 @@ void OnTerminate() noexcept TerminateMsg<TCHAR>(TEXT("a Prolog exception"), tsz); else TerminateMsg<char>("a Prolog exception", NULL); - } catch (Win32Error& e) { + } catch (const Win32Error& e) { TerminateMsg<TCHAR>(TEXT("a Windows error"), e.what<TCHAR>()); - } catch (std::exception& e) { + } catch (const std::exception& e) { TerminateMsg<char>("an exception", e.what()); } catch (...) { TerminateMsg<char>("an exception", NULL); @@ -111,7 +111,7 @@ int Pl(const char* const szMod, const char* const szPred, T... xs) { try { return Plx(szMod, szPred, xs...); - } catch (term_t& t) { + } catch (const term_t& t) { return 0; } } |