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
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
1 changed files with 2 additions and 2 deletions

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)
{