diff options
-rw-r--r-- | odb/boost/smart-ptr/lazy-ptr.ixx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/boost/smart-ptr/lazy-ptr.ixx b/odb/boost/smart-ptr/lazy-ptr.ixx index a9d8e4d..b5370a5 100644 --- a/odb/boost/smart-ptr/lazy-ptr.ixx +++ b/odb/boost/smart-ptr/lazy-ptr.ixx @@ -509,7 +509,7 @@ namespace odb { p_ = r; i_.reset (); - return this; + return *this; } template <class T> @@ -519,7 +519,7 @@ namespace odb { p_ = r; i_.reset (); - return this; + return *this; } template <class T> |