2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-28 07:22:31 +00:00

is_string_literal<char* const> specialization enabled for MIPSpro; this fixes the list.test failures.

[SVN r14468]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2002-07-15 19:09:57 +00:00
parent 149c60bd2e
commit ba1eab1bf0

View File

@@ -27,7 +27,8 @@ struct is_string_literal<char const[n]>
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 <>