aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-01-23 15:09:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-01-23 15:09:05 +0200
commitc477050f14c2a81c0601756aef30458e69b6c266 (patch)
treeb64d47821f47777d731e5563e87ab154930402ea
parent0e03ecad0ac3f50735ca2a185b3fd822cdc6e362 (diff)
Fix C++98 incompatibility
-rw-r--r--odb/mssql/query.hxx7
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 ()