aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/smart-ptr/lazy-ptr.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-02-28 13:02:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-02-28 13:02:27 +0200
commit7ef4fb230176addaf2a10b01fc5bc4c017721180 (patch)
treef26fda1c64d6edf792c6578c4e24dee4f36ccf26 /odb/boost/smart-ptr/lazy-ptr.hxx
parent8839a4a2200a2f726830ca3f1e689eefb120191f (diff)
Fix incorrect reset() signature
Diffstat (limited to 'odb/boost/smart-ptr/lazy-ptr.hxx')
-rw-r--r--odb/boost/smart-ptr/lazy-ptr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/boost/smart-ptr/lazy-ptr.hxx b/odb/boost/smart-ptr/lazy-ptr.hxx
index 482928e..8df56e7 100644
--- a/odb/boost/smart-ptr/lazy-ptr.hxx
+++ b/odb/boost/smart-ptr/lazy-ptr.hxx
@@ -109,7 +109,7 @@ namespace odb
template <class Y> void reset (database_type&, Y*);
template <class Y, class D> void reset (database_type&, Y*, D);
template <class Y, class D, class A> void reset (database_type&, Y*, D, A);
- template <class Y> void reset (database_type&, const std::auto_ptr<Y>&);
+ template <class Y> void reset (database_type&, std::auto_ptr<Y>&);
template <class Y> void reset (database_type&, const ::boost::shared_ptr<Y>&);
template <class O /* = T */>