From 10ef2f9ac8e6216ea1276fe9f55c70db64f1c55f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 23 Jan 2020 15:09:05 +0200 Subject: Fix C++98 incompatibility --- odb/sqlite/query.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'odb') diff --git a/odb/sqlite/query.hxx b/odb/sqlite/query.hxx index 8e45c32..70e4aa1 100644 --- a/odb/sqlite/query.hxx +++ b/odb/sqlite/query.hxx @@ -179,13 +179,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 () -- cgit v1.1