summaryrefslogtreecommitdiffstats
path: root/indexlib/boost-compat/shared_ptr.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-12-31 11:24:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-12-31 20:40:18 +0900
commitcf77371af416089034949edd8aed088432a9adfb (patch)
tree1fb149ddf0a9151f789768e6dfa043e83dd61c18 /indexlib/boost-compat/shared_ptr.h
parentd44d826885633ddfe051437358a421ecb0bf0486 (diff)
downloadtdepim-cf77371af416089034949edd8aed088432a9adfb.tar.gz
tdepim-cf77371af416089034949edd8aed088432a9adfb.zip
Remove support for Metrowerks compiler
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'indexlib/boost-compat/shared_ptr.h')
-rw-r--r--indexlib/boost-compat/shared_ptr.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/indexlib/boost-compat/shared_ptr.h b/indexlib/boost-compat/shared_ptr.h
index a37976fa..a369dc0f 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;