Added default constructor for context
This commit is contained in:
parent
788f3d71fe
commit
6080b8ea00
1 changed files with 1 additions and 0 deletions
|
|
@ -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) {}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue