diff options
Diffstat (limited to 'source/core')
-rw-r--r-- | source/core/StarJsonParser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarJsonParser.hpp b/source/core/StarJsonParser.hpp index 5736f7f..a76a53a 100644 --- a/source/core/StarJsonParser.hpp +++ b/source/core/StarJsonParser.hpp @@ -39,7 +39,7 @@ template <typename InputIterator> class JsonParser { public: JsonParser(JsonStream& stream) - : m_line(0), m_column(0), m_stream(stream), m_error(nullptr) {} + : m_line(0), m_column(0), m_error(nullptr), m_stream(stream) {} virtual ~JsonParser() {} // Does not throw. On error, returned iterator will not be equal to end, and |