aboutsummaryrefslogtreecommitdiff
path: root/odb/database.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-20 14:47:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-20 14:47:07 +0200
commit4ecaf6e91c2f1107f855c93fc2e0e4efb03c4cb0 (patch)
treeab8653c349c5d2b459278cdd77ff5a3249ad643f /odb/database.hxx
parent1be330551017742b923b324ea4534e592f43397e (diff)
Rename store() to update()
Diffstat (limited to 'odb/database.hxx')
-rw-r--r--odb/database.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/database.hxx b/odb/database.hxx
index 832c1a6..ab80da4 100644
--- a/odb/database.hxx
+++ b/odb/database.hxx
@@ -57,11 +57,11 @@ namespace odb
bool
find (const typename object_traits<T>::id_type& id, T& object);
- // Save the state of a modified objects.
+ // Update the state of a modified objects.
//
template <typename T>
void
- store (T& object);
+ update (T& object);
// Make the object transient. Throw object_not_persistent if not
// found.