Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eundersander committed Jul 13, 2022
1 parent 9bca3d6 commit cbec4b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/esp/io/JsonStlTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ inline JsonGenericValue toJsonValue(const std::pair<T_first, T_second>& val,
}

template <typename T_first, typename T_second>
inline bool fromJsonValue(const JsonGenericValue& obj, std::pair<T_first, T_second>& val) {
inline bool fromJsonValue(const JsonGenericValue& obj,
std::pair<T_first, T_second>& val) {
bool success = true;
success &= readMember(obj, "first", val.first);
success &= readMember(obj, "second", val.second);
Expand Down

0 comments on commit cbec4b9

Please sign in to comment.