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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user