diff options
Diffstat (limited to 'Exception.cpp')
-rw-r--r-- | Exception.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Exception.cpp b/Exception.cpp index 371aaa7..46f420e 100644 --- a/Exception.cpp +++ b/Exception.cpp @@ -1,9 +1,9 @@ -#include "Exception.h" - #include <cstdarg> #include <cstdio> #include <cstdlib> +#include "Exception.h" + Exception::~Exception() { if (error != NULL) free(error); @@ -43,3 +43,4 @@ ParserException::ParserException(const char * fmt, ...) { va_format(args, fmt); va_end(args); } + |