diff options
| author | ljfa <ljfa-ag@web.de> | 2015-09-13 19:47:30 +0200 |
|---|---|---|
| committer | ljfa <ljfa-ag@web.de> | 2015-09-13 19:53:11 +0200 |
| commit | ec792d93a73e49738d4ded361f23acfae3a00e94 (patch) | |
| tree | 039820230fc82f1b618dfadc466e5f3e72c28734 /include | |
| parent | 1cf163c9181708a06ab8ac207dc976e066ae91e9 (diff) | |
| download | Project-Tick-ec792d93a73e49738d4ded361f23acfae3a00e94.tar.gz Project-Tick-ec792d93a73e49738d4ded361f23acfae3a00e94.zip | |
Fix ambiguities and missing default constructor
Compiler errors that g++ didn't report
Diffstat (limited to 'include')
| -rw-r--r-- | include/text/json_formatter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/text/json_formatter.h b/include/text/json_formatter.h index c0d1bfc396..4f3e434177 100644 --- a/include/text/json_formatter.h +++ b/include/text/json_formatter.h @@ -36,6 +36,7 @@ namespace text class json_formatter { public: + json_formatter() {} void print(std::ostream& os, const tag& t) const; }; |
