diff options
author | cooldome <cdome@bk.ru> | 2020-03-19 19:38:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-19 20:38:25 +0100 |
commit | b3176b881744242b6c0041024a46a17c7b73c788 (patch) | |
tree | d18d660c08efb53bea1022d212fed5619032bb26 /tests/cpp/tcppraise.nim | |
parent | 034dad8e321edcf6cf88a2ad93fceafae267cc74 (diff) | |
download | Nim-b3176b881744242b6c0041024a46a17c7b73c788.tar.gz |
Attempt to finish off araq cpp exceptions (#13695)
* config update * disable a questionable test * remove c++ exception handling IDs, new impl doesn't require it anymore * C++ based exceptions finally work * fixes bootstrapping problem in C++ mode * teach GCC it's 2020 now * more bugfixes for C++ based exception handling * apply cooldome's patch * another attempt to enable C++11 * bug fix Co-authored-by: Araq <rumpf_a@web.de> Co-authored-by: cooldome <ariabushenko@bk.ru>
Diffstat (limited to 'tests/cpp/tcppraise.nim')
-rw-r--r-- | tests/cpp/tcppraise.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpp/tcppraise.nim b/tests/cpp/tcppraise.nim index 8f34cb3e4..f03956d4c 100644 --- a/tests/cpp/tcppraise.nim +++ b/tests/cpp/tcppraise.nim @@ -68,4 +68,4 @@ except: echo getCurrentExceptionMsg() discard -doAssert: getCurrentException() == nil \ No newline at end of file +doAssert: getCurrentException() == nil |