aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-15 13:17:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-19 11:38:24 +0200
commit1e78bdc724e95898c04a3409b0b192aa7f77780b (patch)
treed26ae47ae9956612b5973f536219f0c9b455db03 /odb/statement.cxx
parent5b0430fdf4617b396e462872d438a663b174a3a8 (diff)
Implement early connection release
Diffstat (limited to 'odb/statement.cxx')
-rw-r--r--odb/statement.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/odb/statement.cxx b/odb/statement.cxx
index eb99227..1d96078 100644
--- a/odb/statement.cxx
+++ b/odb/statement.cxx
@@ -2,8 +2,6 @@
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
-#include <cassert>
-
#include <odb/statement.hxx>
namespace odb
@@ -12,11 +10,4 @@ namespace odb
~statement ()
{
}
-
- void statement::
- cached (bool cached)
- {
- assert (cached);
- cached_ = true;
- }
}