From 7775aa83df4504f3b5e5544a928cc644a51cc97d Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 25 May 2017 08:53:34 +0100 Subject: [PATCH] Decrease the limit for SunOS workaround We have tests for 12.5 (5,20,0), and 12.5_next (5,21,0), I think both are good enough to not require workarounds. --- include/boost/unordered/detail/implementation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/implementation.hpp b/include/boost/unordered/detail/implementation.hpp index 54333400..ecb05226 100644 --- a/include/boost/unordered/detail/implementation.hpp +++ b/include/boost/unordered/detail/implementation.hpp @@ -65,7 +65,7 @@ // (as of May 2017). #if !defined(BOOST_UNORDERED_SUN_WORKAROUNDS1) -#if BOOST_COMP_SUNPRO && BOOST_COMP_SUNPRO < BOOST_VERSION_NUMBER(5, 21, 0) +#if BOOST_COMP_SUNPRO && BOOST_COMP_SUNPRO < BOOST_VERSION_NUMBER(5, 20, 0) #define BOOST_UNORDERED_SUN_WORKAROUNDS1 1 #else #define BOOST_UNORDERED_SUN_WORKAROUNDS1 0