get rid of maybe-uninitialized warnings

This commit is contained in:
ado
2021-02-01 00:56:42 +01:00
parent 035e27c5ab
commit d887dff82a
6 changed files with 88 additions and 117 deletions

View File

@@ -428,8 +428,8 @@ private:
std::vector<string_range> output_;
std::string string_error_;
bool bool_error_;
bool unterminated_quote_;
bool bool_error_{false};
bool unterminated_quote_{false};
enum error_mode error_mode_ { error_mode::error_bool };
line_ptr_type begin_;
line_ptr_type curr_;