aboutsummaryrefslogtreecommitdiff
path: root/odb/result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:02:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-18 20:02:11 +0200
commit2636e266dc7a048e52b40b668c460c2793e897c4 (patch)
tree9717f573d9733b8cfa09a15ee44ed7768c427d7b /odb/result.hxx
parentdce5d0658e67ced4d5fa64f98f598b86917927a7 (diff)
Move shared_ptr to the details namespace
Diffstat (limited to 'odb/result.hxx')
-rw-r--r--odb/result.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/odb/result.hxx b/odb/result.hxx
index 0323b66..58dd9cb 100644
--- a/odb/result.hxx
+++ b/odb/result.hxx
@@ -10,7 +10,8 @@
#include <iterator> // iterator categories
#include <odb/forward.hxx>
-#include <odb/shared-ptr.hxx>
+
+#include <odb/details/shared-ptr.hxx>
namespace odb
{
@@ -21,7 +22,7 @@ namespace odb
class result_iterator;
template <typename T>
- class result_impl: public shared_base
+ class result_impl: public details::shared_base
{
public:
virtual
@@ -188,7 +189,7 @@ namespace odb
}
explicit
- result (shared_ptr<result_impl<T> > impl)
+ result (details::shared_ptr<result_impl<T> > impl)
: impl_ (impl)
{
}
@@ -227,7 +228,7 @@ namespace odb
}
private:
- shared_ptr<result_impl<T> > impl_;
+ details::shared_ptr<result_impl<T> > impl_;
};
}