Merge pull request #1200 from thyu/develop

Fix -Wno-sometimes-uninitialized by initializing "result" in parse_sax
This commit is contained in:
Niels Lohmann
2018-08-18 08:14:04 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ class binary_reader
const bool strict = true)
{
sax = sax_;
bool result;
bool result = false;
switch (format)
{

View File

@@ -6033,7 +6033,7 @@ class binary_reader
const bool strict = true)
{
sax = sax_;
bool result;
bool result = false;
switch (format)
{