mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 12:37:46 +00:00
Merge pull request #1536 from rbehrends/fix-c++-exceptions
Fix the C++ exception struct in nimbase.h.
This commit is contained in:
@@ -175,9 +175,9 @@ __clang__
|
||||
# define NIM_NIL 0
|
||||
struct NimException
|
||||
{
|
||||
NimException(struct E_Base* exp, const char* msg): exp(exp), msg(msg) {}
|
||||
NimException(struct Exception* exp, const char* msg): exp(exp), msg(msg) {}
|
||||
|
||||
struct E_Base* exp;
|
||||
struct Exception* exp;
|
||||
const char* msg;
|
||||
};
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user