mirror of
https://github.com/boostorg/smart_ptr.git
synced 2026-05-04 03:50:58 +02:00
Bug fixes.
[SVN r12787]
This commit is contained in:
@@ -135,12 +135,12 @@ public:
|
||||
|
||||
operator bool_type() const // never throws
|
||||
{
|
||||
return use_count() == 0? 0: &this_type::use_count;
|
||||
return px == 0 || use_count() == 0? 0: &this_type::use_count;
|
||||
}
|
||||
|
||||
bool operator! () const // never throws
|
||||
{
|
||||
return use_count() == 0;
|
||||
return px == 0 || use_count() == 0;
|
||||
}
|
||||
|
||||
void swap(this_type & other) // never throws
|
||||
|
||||
Reference in New Issue
Block a user