aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/result.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/mysql/result.hxx')
-rw-r--r--odb/mysql/result.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/odb/mysql/result.hxx b/odb/mysql/result.hxx
index 6153f59..f800f15 100644
--- a/odb/mysql/result.hxx
+++ b/odb/mysql/result.hxx
@@ -7,12 +7,13 @@
#define ODB_MYSQL_RESULT_HXX
#include <odb/result.hxx>
-#include <odb/shared-ptr.hxx>
#include <odb/mysql/version.hxx>
#include <odb/mysql/forward.hxx>
#include <odb/mysql/statement.hxx>
+#include <odb/details/shared-ptr.hxx>
+
namespace odb
{
namespace mysql
@@ -28,7 +29,7 @@ namespace odb
virtual
~result_impl ();
- result_impl (shared_ptr<query_statement> statement,
+ result_impl (details::shared_ptr<query_statement> statement,
object_statements<T>& statements);
virtual void
@@ -43,7 +44,7 @@ namespace odb
using odb::result_impl<T>::current;
private:
- shared_ptr<query_statement> statement_;
+ details::shared_ptr<query_statement> statement_;
object_statements<T>& statements_;
};
}