Merge branch 'bigbreak' of https://github.com/Araq/Nimrod into bigbreak

This commit is contained in:
Araq
2014-09-22 00:23:49 +02:00

View File

@@ -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