aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-06-14 11:01:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-06-14 11:01:06 +0200
commitdfeb43d6ee14be83281945e82ebb484eeb072fe8 (patch)
tree2b46abd395de00a1e94728586e0f4763a8632f37
parentf1716624e7ed6ad06944103c8e0d40ed40e0bf92 (diff)
Work around bogus Clang warning
-rw-r--r--odb/sqlite/statement-cache.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/sqlite/statement-cache.hxx b/odb/sqlite/statement-cache.hxx
index 923b428..31ca685 100644
--- a/odb/sqlite/statement-cache.hxx
+++ b/odb/sqlite/statement-cache.hxx
@@ -31,7 +31,7 @@ namespace odb
public:
statement_cache (connection& conn)
: conn_ (conn),
- version_seq_ (conn.database ().schema_version_sequence ()) {}
+ version_seq_ (conn_.database ().schema_version_sequence ()) {}
template <typename T>
typename object_traits_impl<T, id_sqlite>::statements_type&