Stop testing C++1z with obsolete libc++ version.

There is also no shared_timed_mutex in obsolete libc++ versions.
This commit is contained in:
jzmaddock
2018-08-05 08:31:18 +01:00
parent fb9957101f
commit d3084e8cb0
2 changed files with 5 additions and 1 deletions

View File

@ -217,7 +217,7 @@ matrix:
- os: linux
compiler: clang++-libc++
env: TOOLSET=clang COMPILER="clang++-6.0 -stdlib=libc++" CXXSTD=03,11,14,1z
env: TOOLSET=clang COMPILER="clang++-6.0 -stdlib=libc++" CXXSTD=03,11,14
addons:
apt:
packages:

View File

@ -135,4 +135,8 @@
# define BOOST_NO_CXX14_HDR_SHARED_MUTEX
#endif
#if !defined(BOOST_NO_CXX14_HDR_SHARED_MUTEX) && (_LIBCPP_VERSION < 5000)
# define BOOST_NO_CXX14_HDR_SHARED_MUTEX
#endif
// --- end ---