summaryrefslogtreecommitdiff
path: root/error.cc
diff options
context:
space:
mode:
Diffstat (limited to 'error.cc')
-rw-r--r--error.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/error.cc b/error.cc
deleted file mode 100644
index 13955c66..00000000
--- a/error.cc
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "error.h"
-
-namespace ledger {
-
-const char* parse_error::what() const throw()
-{
- std::ostringstream msg;
- msg << file << ", line " << line << ": " << error::what();
- return msg.str().c_str();
-}
-
-} // namespace ledger