aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/transaction-impl.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/transaction-impl.hxx
parent35d912d70bc7073f173f22bb5948a00b3c4be3f8 (diff)
Move shared_ptr to the details namespace
Diffstat (limited to 'odb/mysql/transaction-impl.hxx')
-rw-r--r--odb/mysql/transaction-impl.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/odb/mysql/transaction-impl.hxx b/odb/mysql/transaction-impl.hxx
index 626ea11..b9df516 100644
--- a/odb/mysql/transaction-impl.hxx
+++ b/odb/mysql/transaction-impl.hxx
@@ -6,12 +6,13 @@
#ifndef ODB_MYSQL_TRANSACTION_IMPL_HXX
#define ODB_MYSQL_TRANSACTION_IMPL_HXX
-#include <odb/shared-ptr.hxx>
#include <odb/transaction.hxx>
#include <odb/mysql/version.hxx>
#include <odb/mysql/forward.hxx>
+#include <odb/details/shared-ptr.hxx>
+
namespace odb
{
namespace mysql
@@ -40,7 +41,7 @@ namespace odb
connection ();
private:
- shared_ptr<connection_type> connection_;
+ details::shared_ptr<connection_type> connection_;
};
}
}