2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-27 07:02:08 +00:00

Merge branch 'develop' into polynomial_ufd_gcd

This commit is contained in:
Jeremy W. Murphy
2016-07-12 21:39:49 +10:00

View File

@@ -445,6 +445,15 @@ namespace boost{ namespace math{
//
// Thread local storage:
//
#if defined(__has_feature) && defined(__clang__)
#if __has_feature(cxx_thread_local)
# define BOOST_MATH_THREAD_LOCAL thread_local
#else
# define BOOST_MATH_THREAD_LOCAL
#endif
#else
#if (__cplusplus >= 201103L) || (defined(_MSC_VER) && (_MSC_VER >= 1900))
# define BOOST_MATH_THREAD_LOCAL thread_local
#elif defined(__GNUC__)
@@ -455,9 +464,10 @@ namespace boost{ namespace math{
# define BOOST_MATH_THREAD_LOCAL
#endif
#endif
#endif // BOOST_MATH_TOOLS_CONFIG_HPP