Use __is_polymorphic if available. This fixes http://llvm.org/bugs/show_bug.cgi?id=11983 . Patch contributed by Jonathan Sauer.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@150614 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2848444954
commit
1e9f55f2d2
@ -772,6 +772,14 @@ template <class _Tp> struct _LIBCPP_VISIBLE is_empty : public __libcpp_empty<_Tp
|
|||||||
|
|
||||||
// is_polymorphic
|
// is_polymorphic
|
||||||
|
|
||||||
|
#if __has_feature(is_polymorphic)
|
||||||
|
|
||||||
|
template <class _Tp>
|
||||||
|
struct _LIBCPP_VISIBLE is_polymorphic
|
||||||
|
: public integral_constant<bool, __is_polymorphic(_Tp)> {};
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
template <class _Tp> struct __is_polymorphic1 : public _Tp {};
|
template <class _Tp> struct __is_polymorphic1 : public _Tp {};
|
||||||
template <class _Tp> struct __is_polymorphic2 : public _Tp {virtual ~__is_polymorphic2() throw();};
|
template <class _Tp> struct __is_polymorphic2 : public _Tp {virtual ~__is_polymorphic2() throw();};
|
||||||
|
|
||||||
@ -784,6 +792,8 @@ template <class _Tp> struct __libcpp_polymorphic<_Tp, false> : public false_type
|
|||||||
template <class _Tp> struct _LIBCPP_VISIBLE is_polymorphic
|
template <class _Tp> struct _LIBCPP_VISIBLE is_polymorphic
|
||||||
: public __libcpp_polymorphic<_Tp> {};
|
: public __libcpp_polymorphic<_Tp> {};
|
||||||
|
|
||||||
|
#endif // __has_feature(is_polymorphic)
|
||||||
|
|
||||||
// has_virtual_destructor
|
// has_virtual_destructor
|
||||||
|
|
||||||
#if __has_feature(has_virtual_destructor) || (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
|
#if __has_feature(has_virtual_destructor) || (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user