aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/database.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:03:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:03:19 +0200
commit4c8de7a0e8fa65d60b4b54d525c0b5ba43ac265a (patch)
tree84de015adcdd750fe7a3cf417ac856329a623ec1 /odb/mysql/database.hxx
parent35d912d70bc7073f173f22bb5948a00b3c4be3f8 (diff)
Move shared_ptr to the details namespace
Diffstat (limited to 'odb/mysql/database.hxx')
-rw-r--r--odb/mysql/database.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/odb/mysql/database.hxx b/odb/mysql/database.hxx
index fe9ed05..3272eda 100644
--- a/odb/mysql/database.hxx
+++ b/odb/mysql/database.hxx
@@ -11,7 +11,6 @@
#include <string>
#include <memory> // std::auto_ptr
-#include <odb/shared-ptr.hxx>
#include <odb/database.hxx>
#include <odb/mysql/version.hxx>
@@ -20,6 +19,8 @@
#include <odb/mysql/connection-factory.hxx>
#include <odb/mysql/transaction-impl.hxx>
+#include <odb/details/shared-ptr.hxx>
+
namespace odb
{
namespace mysql
@@ -131,7 +132,7 @@ namespace odb
begin_transaction ();
public:
- shared_ptr<connection_type>
+ details::shared_ptr<connection_type>
connection ();
public: