diff options
author | John Wiegley <johnw@newartisans.com> | 2007-06-08 16:42:14 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:39:08 -0400 |
commit | 6080b8ea00de6312f81f3be06bf1c5bbb9fd2700 (patch) | |
tree | 5f8bf85803a528c57313f72b4385ae61df709611 | |
parent | 788f3d71fea8be879c52f24fd1fe8c84d81ddc59 (diff) | |
download | fork-ledger-6080b8ea00de6312f81f3be06bf1c5bbb9fd2700.tar.gz fork-ledger-6080b8ea00de6312f81f3be06bf1c5bbb9fd2700.tar.bz2 fork-ledger-6080b8ea00de6312f81f3be06bf1c5bbb9fd2700.zip |
Added default constructor for context
-rw-r--r-- | src/utility/context.h | 1 |
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) {} |