diff options
Diffstat (limited to 'src/parse/parseerror.hpp')
-rw-r--r-- | src/parse/parseerror.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/parseerror.hpp b/src/parse/parseerror.hpp index bae5de6a..1888a105 100644 --- a/src/parse/parseerror.hpp +++ b/src/parse/parseerror.hpp @@ -32,7 +32,7 @@ public: };
-#define ASSERT(lex, cnd) do { if( !(cnd) ) throw CompileError::BugCheck(lex, "Assertion failed: "#cnd); } while(0)
+#define ASSERT(lex, cnd) do { if( !(cnd) ) throw CompileError::BugCheck(lex, "Assertion failed: " __FILE__ " - " #cnd); } while(0)
}
|