Fixed a typo which caused a build error

This commit is contained in:
Gene Payne
2021-05-04 10:50:28 -06:00
committed by GitHub
parent 804444e267
commit 9166abab45

View File

@@ -68,7 +68,7 @@ std::string formatJson(T value) {
return escapedJson(value);
}
else if constexpr (std::is_same_v<T, ghoul::Dictionary>) {
return return ghoul::formatJson(value);
return ghoul::formatJson(value);
}
else if constexpr (internal::isGlmVector<T>()) {
std::string values;