@@ -65,7 +65,7 @@ namespace boost {
6565 template < typename T1 , typename T2 >
6666 bool operator ()( const T1 & Arg1, const T2 & Arg2 ) const
6767 {
68- #if defined(__BORLANDC__ ) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
68+ #if defined(BOOST_BORLANDC ) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
6969 return std::toupper (Arg1)==std::toupper (Arg2);
7070 #else
7171 return std::toupper<T1 >(Arg1,m_Loc)==std::toupper<T2 >(Arg2,m_Loc);
@@ -118,7 +118,7 @@ namespace boost {
118118 template < typename T1 , typename T2 >
119119 bool operator ()( const T1 & Arg1, const T2 & Arg2 ) const
120120 {
121- #if defined(__BORLANDC__ ) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
121+ #if defined(BOOST_BORLANDC ) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
122122 return std::toupper (Arg1)<std::toupper (Arg2);
123123 #else
124124 return std::toupper<T1 >(Arg1,m_Loc)<std::toupper<T2 >(Arg2,m_Loc);
@@ -171,7 +171,7 @@ namespace boost {
171171 template < typename T1 , typename T2 >
172172 bool operator ()( const T1 & Arg1, const T2 & Arg2 ) const
173173 {
174- #if defined(__BORLANDC__ ) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
174+ #if defined(BOOST_BORLANDC ) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
175175 return std::toupper (Arg1)<=std::toupper (Arg2);
176176 #else
177177 return std::toupper<T1 >(Arg1,m_Loc)<=std::toupper<T2 >(Arg2,m_Loc);
0 commit comments