From 09e75b5f4887e293298060f68fa58f470062c552 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/pgsql/query.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/odb/pgsql/query.hxx b/odb/pgsql/query.hxx index d880111..9489929 100644 --- a/odb/pgsql/query.hxx +++ b/odb/pgsql/query.hxx @@ -149,13 +149,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