aboutsummaryrefslogtreecommitdiff
path: root/odb/connection.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/connection.hxx')
-rw-r--r--odb/connection.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/odb/connection.hxx b/odb/connection.hxx
index 38d6533..8ce4544 100644
--- a/odb/connection.hxx
+++ b/odb/connection.hxx
@@ -1,5 +1,4 @@
// file : odb/connection.hxx
-// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef ODB_CONNECTION_HXX
@@ -90,11 +89,11 @@ namespace odb
template <typename T>
prepared_query<T>
- lookup_query (const char* name) const;
+ lookup_query (const char* name);
template <typename T, typename P>
prepared_query<T>
- lookup_query (const char* name, P*& params) const;
+ lookup_query (const char* name, P*& params);
// SQL statement tracing.
//
@@ -200,8 +199,9 @@ namespace odb
friend class prepared_query_impl;
prepared_query_impl* prepared_queries_;
- protected:
- friend class transaction;
+ // Implementation details.
+ //
+ public:
tracer_type* transaction_tracer_;
};