summaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'error.h')
-rw-r--r--error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/error.h b/error.h
index e6a4984c..f332ae4c 100644
--- a/error.h
+++ b/error.h
@@ -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();
}
};