Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/core/StarJsonExtra.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/StarJsonExtra.hpp')
-rw-r--r--source/core/StarJsonExtra.hpp2
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>