fix use of bind1st in example 12
This commit is contained in:
parent
2b1e4cdda0
commit
a9c4d9bd88
@ -7,6 +7,7 @@
|
||||
|
||||
// Boost.Test
|
||||
#include <boost/test/unit_test.hpp>
|
||||
#include <boost/test/utils/algorithm.hpp>
|
||||
#include <boost/test/tools/floating_point_comparison.hpp>
|
||||
#include <boost/test/parameterized_test.hpp>
|
||||
using namespace boost::unit_test;
|
||||
@ -65,7 +66,7 @@ public:
|
||||
throw std::runtime_error( "Wrong argument size" );
|
||||
|
||||
std::string::const_iterator it = std::find_if( arg.begin(), arg.end(),
|
||||
std::bind1st( boost::mem_fun( &hash_function::helper_ ), this ) );
|
||||
BOOST_TEST_BIND1ST( boost::mem_fun( &hash_function::helper_ ), this ) );
|
||||
|
||||
if( it != arg.end() )
|
||||
throw std::out_of_range( std::string( "Invalid character " ) + *it );
|
||||
|
Loading…
Reference in New Issue
Block a user