Changes between Initial Version and Version 1 of Ticket #10694, comment 1
- Timestamp:
- Oct 24, 2014, 4:33:58 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10694, comment 1
initial v1 1 1 This looks a lot like a clang bug to me, the code in type_traits/intrinsics.hpp sets the use of __is_abstract via: 2 2 3 {{{ 3 4 # if __has_feature(is_abstract) 4 5 # define BOOST_IS_ABSTRACT(T) __is_abstract(T) 5 6 # endif 7 }}} 6 8 7 So... if clang __has_feature is indicating that __is_abstractis available what are we supposed to do?9 So... if clang {{{__has_feature}}} is indicating that {{{__is_abstract}}} is available what are we supposed to do?