We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 090721e commit e3e9de7Copy full SHA for e3e9de7
1 file changed
src/esp/io/JsonStlTypes.h
@@ -37,7 +37,8 @@ inline JsonGenericValue toJsonValue(const std::pair<T_first, T_second>& val,
37
}
38
39
template <typename T_first, typename T_second>
40
-inline bool fromJsonValue(const JsonGenericValue& obj, std::pair<T_first, T_second>& val) {
+inline bool fromJsonValue(const JsonGenericValue& obj,
41
+ std::pair<T_first, T_second>& val) {
42
bool success = true;
43
success &= readMember(obj, "first", val.first);
44
success &= readMember(obj, "second", val.second);
0 commit comments