diff options
Diffstat (limited to 'odb/mysql/transaction-impl.hxx')
-rw-r--r-- | odb/mysql/transaction-impl.hxx | 5 |
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_; }; } } |