Added default constructor for context

This commit is contained in:
John Wiegley 2007-06-08 16:42:14 +00:00
parent 788f3d71fe
commit 6080b8ea00

View file

@ -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) {}