diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-06-03 15:47:18 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-06-03 15:47:18 +1000 |
commit | 5d1e85b24154dea8ccf0fc98e54a5c0cbf32453c (patch) | |
tree | fa9bf4dbe72f0244bcdac361ef44060f421a7971 /source/core/StarJsonParser.hpp | |
parent | add17da988f4518c451abc4d0bacf536071e1c0b (diff) |
player.availableRecipes and root.allRecipes
Diffstat (limited to 'source/core/StarJsonParser.hpp')
-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 |