Skip to content

Commit 8809ef6

Browse files
committed
Boost - update external to 1.74
Not sure why the previous update attempt didn't work - trying again.
1 parent ba5d625 commit 8809ef6

File tree

2,346 files changed

+170633
-58122
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,346 files changed

+170633
-58122
lines changed

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/cxx11/all_of.hpp

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#ifndef BOOST_ALGORITHM_ALL_OF_HPP
1313
#define BOOST_ALGORITHM_ALL_OF_HPP
1414

15+
#include <boost/config.hpp>
1516
#include <boost/range/begin.hpp>
1617
#include <boost/range/end.hpp>
1718

@@ -27,7 +28,7 @@ namespace boost { namespace algorithm {
2728
///
2829
/// \note This function is part of the C++2011 standard library.
2930
template<typename InputIterator, typename Predicate>
30-
bool all_of ( InputIterator first, InputIterator last, Predicate p )
31+
BOOST_CXX14_CONSTEXPR bool all_of ( InputIterator first, InputIterator last, Predicate p )
3132
{
3233
for ( ; first != last; ++first )
3334
if ( !p(*first))
@@ -43,7 +44,7 @@ bool all_of ( InputIterator first, InputIterator last, Predicate p )
4344
/// \param p A predicate for testing the elements of the range
4445
///
4546
template<typename Range, typename Predicate>
46-
bool all_of ( const Range &r, Predicate p )
47+
BOOST_CXX14_CONSTEXPR bool all_of ( const Range &r, Predicate p )
4748
{
4849
return boost::algorithm::all_of ( boost::begin (r), boost::end (r), p );
4950
}
@@ -57,7 +58,7 @@ bool all_of ( const Range &r, Predicate p )
5758
/// \param val A value to compare against
5859
///
5960
template<typename InputIterator, typename T>
60-
bool all_of_equal ( InputIterator first, InputIterator last, const T &val )
61+
BOOST_CXX14_CONSTEXPR bool all_of_equal ( InputIterator first, InputIterator last, const T &val )
6162
{
6263
for ( ; first != last; ++first )
6364
if ( val != *first )
@@ -73,7 +74,7 @@ bool all_of_equal ( InputIterator first, InputIterator last, const T &val )
7374
/// \param val A value to compare against
7475
///
7576
template<typename Range, typename T>
76-
bool all_of_equal ( const Range &r, const T &val )
77+
BOOST_CXX14_CONSTEXPR bool all_of_equal ( const Range &r, const T &val )
7778
{
7879
return boost::algorithm::all_of_equal ( boost::begin (r), boost::end (r), val );
7980
}

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/compare.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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);

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/detail/case_conv.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ namespace boost {
4040
// Operation
4141
CharT operator ()( CharT Ch ) const
4242
{
43-
#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
43+
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
4444
return std::tolower( static_cast<typename boost::make_unsigned <CharT>::type> ( Ch ));
4545
#else
4646
return std::tolower<CharT>( Ch, *m_Loc );
@@ -62,7 +62,7 @@ namespace boost {
6262
// Operation
6363
CharT operator ()( CharT Ch ) const
6464
{
65-
#if defined(__BORLANDC__) && (__BORLANDC__ >= 0x560) && (__BORLANDC__ <= 0x564) && !defined(_USE_OLD_RW_STL)
65+
#if defined(BOOST_BORLANDC) && (BOOST_BORLANDC >= 0x560) && (BOOST_BORLANDC <= 0x564) && !defined(_USE_OLD_RW_STL)
6666
return std::toupper( static_cast<typename boost::make_unsigned <CharT>::type> ( Ch ));
6767
#else
6868
return std::toupper<CharT>( Ch, *m_Loc );

app/gui/qt/external/scsynth-boost-1.74.0/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 boost {
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
{

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/detail/finder.hpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include <boost/algorithm/string/config.hpp>
1515
#include <boost/algorithm/string/constants.hpp>
16-
#include <boost/detail/iterator.hpp>
16+
#include <iterator>
1717

1818
#include <boost/range/iterator_range_core.hpp>
1919
#include <boost/range/begin.hpp>
@@ -127,8 +127,8 @@ namespace boost {
127127
if( boost::empty(m_Search) )
128128
return result_type( End, End );
129129

130-
typedef BOOST_STRING_TYPENAME boost::detail::
131-
iterator_traits<ForwardIteratorT>::iterator_category category;
130+
typedef BOOST_STRING_TYPENAME
131+
std::iterator_traits<ForwardIteratorT>::iterator_category category;
132132

133133
return findit( Begin, End, category() );
134134
}
@@ -344,9 +344,8 @@ namespace boost {
344344
typedef iterator_range<ForwardIteratorT> result_type;
345345

346346
input_iterator_type It=Begin;
347-
for(
348-
unsigned int Index=0;
349-
Index<N && It!=End; ++Index,++It ) {};
347+
for( unsigned int Index=0; Index<N && It!=End; ++Index,++It )
348+
;
350349

351350
return result_type( Begin, It );
352351
}
@@ -375,8 +374,8 @@ namespace boost {
375374
ForwardIteratorT End,
376375
unsigned int N )
377376
{
378-
typedef BOOST_STRING_TYPENAME boost::detail::
379-
iterator_traits<ForwardIteratorT>::iterator_category category;
377+
typedef BOOST_STRING_TYPENAME
378+
std::iterator_traits<ForwardIteratorT>::iterator_category category;
380379

381380
return ::boost::algorithm::detail::find_head_impl( Begin, End, N, category() );
382381
}
@@ -397,10 +396,12 @@ namespace boost {
397396
input_iterator_type It2=Begin;
398397

399398
// Advance It2 by N increments
400-
for( Index=0; Index<N && It2!=End; ++Index,++It2 ) {};
399+
for( Index=0; Index<N && It2!=End; ++Index,++It2 )
400+
;
401401

402402
// Advance It, It2 to the end
403-
for(; It2!=End; ++It,++It2 ) {};
403+
for(; It2!=End; ++It,++It2 )
404+
;
404405

405406
return result_type( It, It2 );
406407
}
@@ -417,9 +418,8 @@ namespace boost {
417418
typedef iterator_range<ForwardIteratorT> result_type;
418419

419420
input_iterator_type It=End;
420-
for(
421-
unsigned int Index=0;
422-
Index<N && It!=Begin; ++Index,--It ) {};
421+
for( unsigned int Index=0; Index<N && It!=Begin; ++Index,--It )
422+
;
423423

424424
return result_type( It, End );
425425
}
@@ -448,8 +448,8 @@ namespace boost {
448448
ForwardIteratorT End,
449449
unsigned int N )
450450
{
451-
typedef BOOST_STRING_TYPENAME boost::detail::
452-
iterator_traits<ForwardIteratorT>::iterator_category category;
451+
typedef BOOST_STRING_TYPENAME
452+
std::iterator_traits<ForwardIteratorT>::iterator_category category;
453453

454454
return ::boost::algorithm::detail::find_tail_impl( Begin, End, N, category() );
455455
}

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/detail/formatter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace boost {
4242
m_Format(::boost::begin(Format), ::boost::end(Format)) {}
4343

4444
// Operation
45-
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
45+
#if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x564))
4646
template<typename Range2T>
4747
result_type& operator()(const Range2T&)
4848
{

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/detail/trim.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define BOOST_STRING_TRIM_DETAIL_HPP
1313

1414
#include <boost/algorithm/string/config.hpp>
15-
#include <boost/detail/iterator.hpp>
15+
#include <iterator>
1616

1717
namespace boost {
1818
namespace algorithm {
@@ -80,8 +80,8 @@ namespace boost {
8080
ForwardIteratorT InEnd,
8181
PredicateT IsSpace )
8282
{
83-
typedef BOOST_STRING_TYPENAME boost::detail::
84-
iterator_traits<ForwardIteratorT>::iterator_category category;
83+
typedef BOOST_STRING_TYPENAME
84+
std::iterator_traits<ForwardIteratorT>::iterator_category category;
8585

8686
return ::boost::algorithm::detail::trim_end_iter_select( InBegin, InEnd, IsSpace, category() );
8787
}

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/find_format.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#define BOOST_STRING_FIND_FORMAT_HPP
1313

1414
#include <deque>
15-
#include <boost/detail/iterator.hpp>
1615
#include <boost/range/iterator_range_core.hpp>
1716
#include <boost/range/begin.hpp>
1817
#include <boost/range/end.hpp>
@@ -40,7 +39,7 @@ namespace boost {
4039
this substring and replace it in the input.
4140
The result is a modified copy of the input. It is returned as a sequence
4241
or copied to the output iterator.
43-
42+
4443
\param Output An output iterator to which the result will be copied
4544
\param Input An input sequence
4645
\param Finder A Finder object used to search for a match to be replaced

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/finder.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ namespace boost {
4343
The result is given as an \c iterator_range delimiting the match.
4444
4545
\param Search A substring to be searched for.
46-
\param Comp An element comparison predicate
4746
\return An instance of the \c first_finder object
4847
*/
4948
template<typename RangeT>
@@ -84,7 +83,6 @@ namespace boost {
8483
The result is given as an \c iterator_range delimiting the match.
8584
8685
\param Search A substring to be searched for.
87-
\param Comp An element comparison predicate
8886
\return An instance of the \c last_finder object
8987
*/
9088
template<typename RangeT>
@@ -124,7 +122,6 @@ namespace boost {
124122
125123
\param Search A substring to be searched for.
126124
\param Nth An index of the match to be find
127-
\param Comp An element comparison predicate
128125
\return An instance of the \c nth_finder object
129126
*/
130127
template<typename RangeT>
@@ -230,7 +227,6 @@ namespace boost {
230227
231228
\param Begin Beginning of the range
232229
\param End End of the range
233-
\param Range The range.
234230
\return An instance of the \c range_finger object
235231
*/
236232
template< typename ForwardIteratorT >

app/gui/qt/external/scsynth-boost-1.74.0/boost/algorithm/string/formatter.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#ifndef BOOST_STRING_FORMATTER_HPP
1212
#define BOOST_STRING_FORMATTER_HPP
1313

14-
#include <boost/detail/iterator.hpp>
1514
#include <boost/range/value_type.hpp>
1615
#include <boost/range/iterator_range_core.hpp>
1716
#include <boost/range/as_literal.hpp>

0 commit comments

Comments
 (0)