Util: Update JSON user-defined literal type name

This commit is contained in:
Riyyi
2022-07-25 17:19:56 +02:00
parent f536aefc99
commit 0e93009e4b
+2 -2
View File
@@ -143,7 +143,7 @@ void format(FormatBuilder& builder, const Value& value);
*
* Example usage: auto json = "[ 3.14, true, null ]"_json;
*/
inline Json::Value operator"" _json(const char* input, size_t length)
inline Util::JSON::Value operator"" _json(const char* input, size_t length)
{
return Json::Value::parse(std::string(input, length));
return Util::JSON::Value::parse(std::string(input, length));
}