summaryrefslogtreecommitdiffstats
path: root/indexlib/boost-compat/intrusive_ptr.h
diff options
context:
space:
mode:
Diffstat (limited to 'indexlib/boost-compat/intrusive_ptr.h')
-rw-r--r--indexlib/boost-compat/intrusive_ptr.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/indexlib/boost-compat/intrusive_ptr.h b/indexlib/boost-compat/intrusive_ptr.h
index a8b5b2e35..a2af559ba 100644
--- a/indexlib/boost-compat/intrusive_ptr.h
+++ b/indexlib/boost-compat/intrusive_ptr.h
@@ -127,14 +127,6 @@ public:
return p_ != 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 p_ == 0? 0: &this_type::get;
- }
-
#else
typedef T * this_type::*unspecified_bool_type;