forked from boostorg/config
Try to correct clang defect logic.
This commit is contained in:
@ -256,11 +256,10 @@
|
|||||||
# define BOOST_NO_CXX14_BINARY_LITERALS
|
# define BOOST_NO_CXX14_BINARY_LITERALS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !__has_feature(__cxx_decltype_auto__)
|
#if !__has_feature(__cxx_decltype_auto__) && (__clang_major__ > 3)
|
||||||
#if (__clang_major__ > 3)
|
// This fails with debug info enabled for clang 3.5:
|
||||||
# define BOOST_NO_CXX14_DECLTYPE_AUTO
|
# define BOOST_NO_CXX14_DECLTYPE_AUTO
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !__has_feature(__cxx_aggregate_nsdmi__)
|
#if !__has_feature(__cxx_aggregate_nsdmi__)
|
||||||
# define BOOST_NO_CXX14_AGGREGATE_NSDMI
|
# define BOOST_NO_CXX14_AGGREGATE_NSDMI
|
||||||
|
Reference in New Issue
Block a user