Skip to content

Commit 6e0070c

Browse files
committed
Update asio subset
1 parent a21788d commit 6e0070c

File tree

2,399 files changed

+241712
-96114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,399 files changed

+241712
-96114
lines changed

lslboost/boost/algorithm/string.hpp

Lines changed: 0 additions & 31 deletions
This file was deleted.

lslboost/boost/algorithm/string/case_conv.hpp

Lines changed: 0 additions & 176 deletions
This file was deleted.

lslboost/boost/algorithm/string/compare.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ namespace lslboost {
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 lslboost {
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 lslboost {
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);

lslboost/boost/algorithm/string/detail/case_conv.hpp

Lines changed: 0 additions & 127 deletions
This file was deleted.

lslboost/boost/algorithm/string/detail/classification.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace lslboost {
4545
return std::use_facet< std::ctype<CharT> >(m_Locale).is( m_Type, Ch );
4646
}
4747

48-
#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x582) && !defined(_USE_OLD_RW_STL)
48+
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x582) && !defined(_USE_OLD_RW_STL)
4949
template<>
5050
bool operator()( char const Ch ) const
5151
{

0 commit comments

Comments
 (0)