diff options
-rw-r--r-- | odb/mssql/query.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/odb/mssql/query.hxx b/odb/mssql/query.hxx index d238787..efd05b0 100644 --- a/odb/mssql/query.hxx +++ b/odb/mssql/query.hxx @@ -175,13 +175,14 @@ namespace odb kind_bool }; - clause_part (kind_type k): kind (k) {} - clause_part (kind_type k, const std::string& p): kind (k), part (p) {} + clause_part (kind_type k): kind (k), bool_part (false) {} + clause_part (kind_type k, const std::string& p) + : kind (k), part (p), bool_part (false) {} clause_part (bool p): kind (kind_bool), bool_part (p) {} kind_type kind; std::string part; // If kind is param, then part is conversion expr. - bool bool_part = false; + bool bool_part; }; query_base () |