diff options
Diffstat (limited to 'error.h')
-rw-r--r-- | error.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ class parse_error : public error virtual const char* what() const throw() { static std::ostringstream msg; - msg << "Error: " << file << ", line " << line << ": " << error::what(); + msg << file << ", line " << line << ": " << error::what(); return msg.str().c_str(); } }; |