Skip to content

Commit

Permalink
Update asio subset
Browse files Browse the repository at this point in the history
  • Loading branch information
tstenner committed Jul 6, 2021
1 parent a21788d commit 6e0070c
Show file tree
Hide file tree
Showing 2,399 changed files with 241,712 additions and 96,114 deletions.
31 changes: 0 additions & 31 deletions lslboost/boost/algorithm/string.hpp

This file was deleted.

176 changes: 0 additions & 176 deletions lslboost/boost/algorithm/string/case_conv.hpp

This file was deleted.

6 changes: 3 additions & 3 deletions lslboost/boost/algorithm/string/compare.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace lslboost {
template< typename T1, typename T2 >
bool operator()( const T1& Arg1, const T2& Arg2 ) const
{
#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
return std::toupper(Arg1)==std::toupper(Arg2);
#else
return std::toupper<T1>(Arg1,m_Loc)==std::toupper<T2>(Arg2,m_Loc);
Expand Down Expand Up @@ -118,7 +118,7 @@ namespace lslboost {
template< typename T1, typename T2 >
bool operator()( const T1& Arg1, const T2& Arg2 ) const
{
#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
return std::toupper(Arg1)<std::toupper(Arg2);
#else
return std::toupper<T1>(Arg1,m_Loc)<std::toupper<T2>(Arg2,m_Loc);
Expand Down Expand Up @@ -171,7 +171,7 @@ namespace lslboost {
template< typename T1, typename T2 >
bool operator()( const T1& Arg1, const T2& Arg2 ) const
{
#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
return std::toupper(Arg1)<=std::toupper(Arg2);
#else
return std::toupper<T1>(Arg1,m_Loc)<=std::toupper<T2>(Arg2,m_Loc);
Expand Down
127 changes: 0 additions & 127 deletions lslboost/boost/algorithm/string/detail/case_conv.hpp

This file was deleted.

2 changes: 1 addition & 1 deletion lslboost/boost/algorithm/string/detail/classification.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace lslboost {
return std::use_facet< std::ctype<CharT> >(m_Locale).is( m_Type, Ch );
}

#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x582) && !defined(_USE_OLD_RW_STL)
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x582) && !defined(_USE_OLD_RW_STL)
template<>
bool operator()( char const Ch ) const
{
Expand Down
Loading

0 comments on commit 6e0070c

Please sign in to comment.