aboutsummaryrefslogtreecommitdiff
path: root/odb/vector-impl.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-08 12:55:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-08 12:55:28 +0200
commit9502ebbff304fdd970cbbe3d3e7847851ca89141 (patch)
treea7cd28cd47ded6c7c7911c53fce7ca0b5b37475e /odb/vector-impl.hxx
parent26cddc7f0a682d6dcedd3880fee09ab4a21dbe21 (diff)
Add callback_ prefix to transaction callback functions
Also test callback_update().
Diffstat (limited to 'odb/vector-impl.hxx')
-rw-r--r--odb/vector-impl.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/vector-impl.hxx b/odb/vector-impl.hxx
index a6be505..38c64aa 100644
--- a/odb/vector-impl.hxx
+++ b/odb/vector-impl.hxx
@@ -192,7 +192,7 @@ namespace odb
protected:
vector_base (): tran_ (0) {}
- ~vector_base () {if (tran_ != 0) tran_->unregister (this);}
+ ~vector_base () {if (tran_ != 0) tran_->callback_unregister (this);}
vector_base (const vector_base&);
#ifdef ODB_CXX11