Skip to content

Commit e3e9de7

Browse files
committed
formatting fix
1 parent 090721e commit e3e9de7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/esp/io/JsonStlTypes.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ inline JsonGenericValue toJsonValue(const std::pair<T_first, T_second>& val,
3737
}
3838

3939
template <typename T_first, typename T_second>
40-
inline bool fromJsonValue(const JsonGenericValue& obj, std::pair<T_first, T_second>& val) {
40+
inline bool fromJsonValue(const JsonGenericValue& obj,
41+
std::pair<T_first, T_second>& val) {
4142
bool success = true;
4243
success &= readMember(obj, "first", val.first);
4344
success &= readMember(obj, "second", val.second);

0 commit comments

Comments
 (0)