1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 22:13:07 +01:00

Remove optional arguments to json_t::parse

This commit is contained in:
Gymnasiast
2020-09-18 23:46:07 +02:00
parent 72c13c8e77
commit a896d238b1

View File

@@ -32,7 +32,7 @@ namespace Json
try
{
json = json_t::parse(fileData, nullptr, true);
json = json_t::parse(fileData);
}
catch (const json_t::exception& e)
{
@@ -58,7 +58,7 @@ namespace Json
try
{
json = json_t::parse(raw, nullptr, true);
json = json_t::parse(raw);
}
catch (const json_t::exception& e)
{