aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/statement.cxx')
-rw-r--r--odb/statement.cxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/odb/statement.cxx b/odb/statement.cxx
index 1d96078..eb99227 100644
--- a/odb/statement.cxx
+++ b/odb/statement.cxx
@@ -2,6 +2,8 @@
// 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
@@ -10,4 +12,11 @@ namespace odb
~statement ()
{
}
+
+ void statement::
+ cached (bool cached)
+ {
+ assert (cached);
+ cached_ = true;
+ }
}