summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-06-08 16:42:14 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:39:08 -0400
commit6080b8ea00de6312f81f3be06bf1c5bbb9fd2700 (patch)
tree5f8bf85803a528c57313f72b4385ae61df709611
parent788f3d71fea8be879c52f24fd1fe8c84d81ddc59 (diff)
downloadfork-ledger-6080b8ea00de6312f81f3be06bf1c5bbb9fd2700.tar.gz
fork-ledger-6080b8ea00de6312f81f3be06bf1c5bbb9fd2700.tar.bz2
fork-ledger-6080b8ea00de6312f81f3be06bf1c5bbb9fd2700.zip
Added default constructor for context
-rw-r--r--src/utility/context.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utility/context.h b/src/utility/context.h
index 934c5aee..411e6821 100644
--- a/src/utility/context.h
+++ b/src/utility/context.h
@@ -39,6 +39,7 @@ class context
public:
string description; // ex: 'While parsing file "%R" at line %L'
+ context() throw() {}
explicit context(const string& _description) throw()
: description(_description) {}