From ba1eab1bf0ef918995fe630c9b2c7d4557c4bcb3 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Mon, 15 Jul 2002 19:09:57 +0000 Subject: [PATCH] is_string_literal specialization enabled for MIPSpro; this fixes the list.test failures. [SVN r14468] --- include/boost/python/detail/string_literal.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/python/detail/string_literal.hpp b/include/boost/python/detail/string_literal.hpp index ddafa401..dc8b0791 100644 --- a/include/boost/python/detail/string_literal.hpp +++ b/include/boost/python/detail/string_literal.hpp @@ -27,7 +27,8 @@ struct is_string_literal BOOST_STATIC_CONSTANT(bool, value = true); }; -# if defined(__DECCXX_VER) && __DECCXX_VER <= 60590014 +# if (defined(__DECCXX_VER) && __DECCXX_VER <= 60590014) \ + || (defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730) // This compiler mistakenly gets the type of string literals as char* // instead of char[NN]. template <>