RX: C++11

This commit is contained in:
Paul Beckingham
2016-02-03 19:26:52 -05:00
parent 073ff9032d
commit 4d2c97f2c3
2 changed files with 11 additions and 17 deletions

View File

@@ -48,9 +48,9 @@ private:
void compile ();
private:
bool _compiled;
std::string _pattern;
bool _case_sensitive;
bool _compiled {false};
std::string _pattern {};
bool _case_sensitive {false};
regex_t _regex;
};