diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-09-15 13:46:15 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-09-15 13:46:15 +1000 |
commit | 4d920423694fd80968ff72015534f619595b2d6f (patch) | |
tree | 6c7088802788266f05208e29a89363c6cdd85295 /source/core | |
parent | 1dc14b116cede3a635b3ef20bd5dd7b0e494fb73 (diff) |
Update StarJsonExtra.hpp
Diffstat (limited to 'source/core')
-rw-r--r-- | source/core/StarJsonExtra.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarJsonExtra.hpp b/source/core/StarJsonExtra.hpp index 40c3a2f..c8fc185 100644 --- a/source/core/StarJsonExtra.hpp +++ b/source/core/StarJsonExtra.hpp @@ -213,7 +213,7 @@ Json jsonFromList(List<Value> const& list, Converter&& valueConvert) { template <typename SetType> SetType jsonToSet(Json const& v) { - return jsonToSet<SetType>(v, construct<SetType::value_type>()); + return jsonToSet<SetType>(v, construct<typename SetType::value_type>()); } template <typename SetType, typename Converter> |