diff options
author | Araq <rumpf_a@web.de> | 2014-09-22 00:23:49 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-09-22 00:23:49 +0200 |
commit | ed3c5094845d5674279c1fd8bdf4da27a0eed561 (patch) | |
tree | 58f31de70a229ebd68aef29c873cb915466e97a4 /lib/nimbase.h | |
parent | 3866820eeedd4a219c3d0c09368bb85081bf52ce (diff) | |
parent | be4ba236d9c20073656a323f0b63c3a9d135e043 (diff) | |
download | Nim-ed3c5094845d5674279c1fd8bdf4da27a0eed561.tar.gz |
Merge branch 'bigbreak' of https://github.com/Araq/Nimrod into bigbreak
Diffstat (limited to 'lib/nimbase.h')
-rw-r--r-- | lib/nimbase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/nimbase.h b/lib/nimbase.h index b43094227..f49855076 100644 --- a/lib/nimbase.h +++ b/lib/nimbase.h @@ -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 |