aboutsummaryrefslogtreecommitdiff
path: root/common/threads/driver.cxx
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
commit27f66487bc50ee5086c22f5831d72e4669fba084 (patch)
treeb4ec5777429f3fde89d2c5b149be5224f4d0efc0 /common/threads/driver.cxx
parent7743e389865f12decea06eb11380f5b0e53a283b (diff)
Rename store() to update()
Diffstat (limited to 'common/threads/driver.cxx')
-rw-r--r--common/threads/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/threads/driver.cxx b/common/threads/driver.cxx
index 9703e29..14ca172 100644
--- a/common/threads/driver.cxx
+++ b/common/threads/driver.cxx
@@ -62,7 +62,7 @@ struct task
auto_ptr<object> o (db_.load<object> (id));
assert (o->str_ == "frist object");
o->str_ = "another value";
- db_.store (*o);
+ db_.update (*o);
t.commit ();
}