X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fparser.h;h=1437190b606b89640afabd4619a62c4fe21f65c8;hb=HEAD;hp=c7c10f162f3339b4085f88df03afe69dc5bad3dc;hpb=82e19fd15e24f913fba0cf8a4fb0352f282c3389;p=libs%2Fdatafile.git diff --git a/source/parser.h b/source/parser.h index c7c10f1..ed7a037 100644 --- a/source/parser.h +++ b/source/parser.h @@ -25,8 +25,8 @@ private: Input in; std::string main_src; std::string src; - bool good; - ParserMode *mode; + bool good = true; + ParserMode *mode = nullptr; public: Parser(IO::Base &i, const std::string &s); @@ -51,7 +51,7 @@ public: statement's signature. */ bool parse_and_load(unsigned, Loader &, const LoaderAction &); - operator bool() const { return good && in; } + explicit operator bool() const { return good && in; } }; } // namespace DataFile