uninitialized variables-persistence

This commit is contained in:
AzaezelX 2020-05-11 15:12:50 -05:00
parent a46bf3d7e5
commit b6c33bdd2b
3 changed files with 4 additions and 3 deletions

View file

@ -38,7 +38,7 @@
class TamlJSONParser : public TamlParser
{
public:
TamlJSONParser() {}
TamlJSONParser() :mDocumentDirty(false) {}
virtual ~TamlJSONParser() {}
/// Whether the parser can change a property or not.
@ -54,4 +54,4 @@ private:
bool mDocumentDirty;
};
#endif // _TAML_JSONPARSER_H_
#endif // _TAML_JSONPARSER_H_