mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-30 20:47:15 +02:00
Inspect fixes
[SVN r30045]
This commit is contained in:
@ -24,7 +24,7 @@ using namespace std;
|
|||||||
using namespace boost;
|
using namespace boost;
|
||||||
|
|
||||||
// replace mark specification, specialize for a specific element type
|
// replace mark specification, specialize for a specific element type
|
||||||
template< typename T > T repeat_mark() { return std::numeric_limits<T>::max(); };
|
template< typename T > T repeat_mark() { return (std::numeric_limits<T>::max)(); };
|
||||||
|
|
||||||
// Compression -----------------------------------------------------------------------
|
// Compression -----------------------------------------------------------------------
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ struct find_compressF
|
|||||||
{
|
{
|
||||||
input_iterator_type It2=It++;
|
input_iterator_type It2=It++;
|
||||||
|
|
||||||
if ( It==End || Cnt>=std::numeric_limits<value_type>::max() )
|
if ( It==End || Cnt>=(std::numeric_limits<value_type>)::max() )
|
||||||
{
|
{
|
||||||
return result_type( MStart, It );
|
return result_type( MStart, It );
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ DEPENDS all : test ;
|
|||||||
|
|
||||||
{
|
{
|
||||||
test-suite algorithm/string
|
test-suite algorithm/string
|
||||||
: [ run
|
: [ run
|
||||||
trim_test.cpp
|
trim_test.cpp
|
||||||
: :
|
: :
|
||||||
:
|
:
|
||||||
|
Reference in New Issue
Block a user