Remove direct test for clang version as clang doc says that SD-6 supported fron clang 3.4 and up.

This commit is contained in:
Edward Diener
2015-06-28 13:06:27 -04:00
parent 7e6d65e361
commit ce9a0f17c8

View File

@ -71,8 +71,6 @@
#if !__has_include(<shared_mutex>) #if !__has_include(<shared_mutex>)
# define BOOST_NO_CXX14_HDR_SHARED_MUTEX # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
#endif #endif
#elif defined(__clang__) && (__clang_major__ < 3 || (__clang_major__ == 3 && __clang_minor__ < 4))
# define BOOST_NO_CXX14_HDR_SHARED_MUTEX
#elif __cplusplus < 201402 #elif __cplusplus < 201402
# define BOOST_NO_CXX14_HDR_SHARED_MUTEX # define BOOST_NO_CXX14_HDR_SHARED_MUTEX
#endif #endif