aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/smart-ptr/lazy-ptr.txx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-04-18 11:16:30 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-04-18 11:16:30 +0200
commit53a30dbef3bb9d60946e96adc88c4a6c1073f566 (patch)
treeb71c0aac9add219e61267f231970c682b705ef78 /odb/boost/smart-ptr/lazy-ptr.txx
parent5906467062142e497487790f31287e5f243dc57e (diff)
Fix loaded() function in lazy_ptr to conform to documentation
Diffstat (limited to 'odb/boost/smart-ptr/lazy-ptr.txx')
-rw-r--r--odb/boost/smart-ptr/lazy-ptr.txx20
1 files changed, 16 insertions, 4 deletions
diff --git a/odb/boost/smart-ptr/lazy-ptr.txx b/odb/boost/smart-ptr/lazy-ptr.txx
index bca6fdb..8ca589a 100644
--- a/odb/boost/smart-ptr/lazy-ptr.txx
+++ b/odb/boost/smart-ptr/lazy-ptr.txx
@@ -16,12 +16,24 @@ namespace odb
bool lazy_shared_ptr<T>::
equal (const lazy_shared_ptr<Y>& r) const
{
- if (loaded () && r.loaded ())
+ bool t1 (!p_ == loaded ());
+ bool t2 (!r.p_ == r.loaded ());
+
+ // If both are transient, then compare the underlying pointers.
+ //
+ if (t1 && t2)
return p_ == r.p_;
- // If one of the object is not loaded, then we compare databases and
- // object ids. Note that NULL pointers cannot have non-NULL databases
- // and if both of them are NULL, we wouldn't have gotten here.
+ // If one is transient and the other is persistent, then compare
+ // the underlying pointers but only if they are non NULL. Note
+ // that an unloaded persistent object is always unequal to a
+ // transient object.
+ //
+ if (t1 || t2)
+ return p_ == r.p_ && p_;
+
+ // If both objects are persistent, then we compare databases and
+ // object ids.
//
typedef typename object_traits<T>::object_type object_type1;
typedef typename object_traits<Y>::object_type object_type2;