CI: Revert no longer needed defines.

This commit is contained in:
jzmaddock
2019-06-24 09:08:18 +01:00
parent 21a37b6c4c
commit a900330798
2 changed files with 2 additions and 3 deletions

View File

@ -256,8 +256,7 @@
# define BOOST_NO_CXX14_BINARY_LITERALS # define BOOST_NO_CXX14_BINARY_LITERALS
#endif #endif
#if !__has_feature(__cxx_decltype_auto__) || (__clang_major__ < 4) #if !__has_feature(__cxx_decltype_auto__)
// This fails with debug info enabled for clang 3.5:
# define BOOST_NO_CXX14_DECLTYPE_AUTO # define BOOST_NO_CXX14_DECLTYPE_AUTO
#endif #endif

View File

@ -106,7 +106,7 @@
#define BOOST_NO_CXX17_ITERATOR_TRAITS #define BOOST_NO_CXX17_ITERATOR_TRAITS
#define BOOST_NO_CXX17_STD_INVOKE // Invoke support is incomplete (no invoke_result) #define BOOST_NO_CXX17_STD_INVOKE // Invoke support is incomplete (no invoke_result)
#if ((_LIBCPP_VERSION <= 1101) || (_LIBCPP_VERSION == 7000)) && !defined(BOOST_NO_CXX11_THREAD_LOCAL) #if (_LIBCPP_VERSION <= 1101) && !defined(BOOST_NO_CXX11_THREAD_LOCAL)
// This is a bit of a sledgehammer, because really it's just libc++abi that has no // This is a bit of a sledgehammer, because really it's just libc++abi that has no
// support for thread_local, leading to linker errors such as // support for thread_local, leading to linker errors such as
// "undefined reference to `__cxa_thread_atexit'". It is fixed in the // "undefined reference to `__cxa_thread_atexit'". It is fixed in the