aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/no-id-object-result.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-12 17:24:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-19 11:40:30 +0200
commitd94948b8bccfd8748245726487d54c41bb199baf (patch)
treec83176902ed8cb3c49532078e0705e2fc6621555 /odb/sqlite/no-id-object-result.txx
parent1c8dc77a0feae8b33e8c06f7ba076bd26d278054 (diff)
Completion of prepared query support
Diffstat (limited to 'odb/sqlite/no-id-object-result.txx')
-rw-r--r--odb/sqlite/no-id-object-result.txx10
1 files changed, 5 insertions, 5 deletions
diff --git a/odb/sqlite/no-id-object-result.txx b/odb/sqlite/no-id-object-result.txx
index 5dad5b2..3fe9fc2 100644
--- a/odb/sqlite/no-id-object-result.txx
+++ b/odb/sqlite/no-id-object-result.txx
@@ -22,11 +22,11 @@ namespace odb
template <typename T>
no_id_object_result_impl<T>::
no_id_object_result_impl (const query_base& q,
- details::shared_ptr<select_statement> statement,
- statements_type& statements)
- : base_type (statements.connection ().database ()),
- result_impl_base (q, statement),
- statements_ (statements)
+ const details::shared_ptr<select_statement>& s,
+ statements_type& sts)
+ : base_type (sts.connection ().database ()),
+ result_impl_base (q, s),
+ statements_ (sts)
{
}