summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-09-22 00:23:49 +0200
committerAraq <rumpf_a@web.de>2014-09-22 00:23:49 +0200
commited3c5094845d5674279c1fd8bdf4da27a0eed561 (patch)
tree58f31de70a229ebd68aef29c873cb915466e97a4
parent3866820eeedd4a219c3d0c09368bb85081bf52ce (diff)
parentbe4ba236d9c20073656a323f0b63c3a9d135e043 (diff)
downloadNim-ed3c5094845d5674279c1fd8bdf4da27a0eed561.tar.gz
Merge branch 'bigbreak' of https://github.com/Araq/Nimrod into bigbreak
-rw-r--r--lib/nimbase.h4
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