diff options
Diffstat (limited to 'indexlib/boost-compat/shared_ptr.h')
-rw-r--r-- | indexlib/boost-compat/shared_ptr.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/indexlib/boost-compat/shared_ptr.h b/indexlib/boost-compat/shared_ptr.h index a37976fa9..a369dc0f8 100644 --- a/indexlib/boost-compat/shared_ptr.h +++ b/indexlib/boost-compat/shared_ptr.h @@ -244,14 +244,6 @@ public: return px != 0; } -#elif defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003)) - typedef T * (this_type::*unspecified_bool_type)() const; - - operator unspecified_bool_type() const // never throws - { - return px == 0? 0: &this_type::get; - } - #else typedef T * this_type::*unspecified_bool_type; |