aboutsummaryrefslogtreecommitdiff
path: root/common/threads
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:04:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:04:09 +0200
commitbc95a07e6ecd388b4ef485f218aa1211d36e0e53 (patch)
tree154dae5cae59e0b09a013f050c6e769df71be551 /common/threads
parenta5e7a049052324e34cb7d163333f6e449065c5af (diff)
Move shared_ptr to the details namespace
Diffstat (limited to 'common/threads')
-rw-r--r--common/threads/driver.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/common/threads/driver.cxx b/common/threads/driver.cxx
index 9ae5b50..c883bba 100644
--- a/common/threads/driver.cxx
+++ b/common/threads/driver.cxx
@@ -14,7 +14,7 @@
#include <odb/database.hxx>
#include <odb/transaction.hxx>
-#include <odb/shared-ptr.hxx>
+#include <odb/details/shared-ptr.hxx>
#include <odb/details/thread.hxx>
#include <common.hxx>
@@ -25,8 +25,9 @@
using namespace std;
using namespace odb;
-using odb::shared_ptr;
-using odb::details::thread;
+using details::shared;
+using details::shared_ptr;
+using details::thread;
const size_t thread_count = 32;
const size_t iteration_count = 100;