fix the fix for SGI MIPSpro with STLport

[SVN r10008]
This commit is contained in:
Jens Maurer
2001-05-03 11:57:57 +00:00
parent b3f587b9f7
commit 949134726f

View File

@ -88,8 +88,8 @@ class integer_traits<wchar_t>
#if defined(__BORLANDC__) #if defined(__BORLANDC__)
// Borland C++ does not have WCHAR_MIN and WCHAR_MAX // Borland C++ does not have WCHAR_MIN and WCHAR_MAX
public detail::integer_traits_base<wchar_t, 0, 0xffff> public detail::integer_traits_base<wchar_t, 0, 0xffff>
#elif defined(__sgi) #elif defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400)
// SGI MIPSpro doesn't have them, either // SGI MIPSpro with native library doesn't have them, either
public detail::integer_traits_base<wchar_t, INT_MIN, INT_MAX> public detail::integer_traits_base<wchar_t, INT_MIN, INT_MAX>
#else #else
public detail::integer_traits_base<wchar_t, WCHAR_MIN, WCHAR_MAX> public detail::integer_traits_base<wchar_t, WCHAR_MIN, WCHAR_MAX>