range: silence some warnings

[SVN r85584]
This commit is contained in:
Tim Blechmann
2013-09-06 08:51:00 +00:00
committed by Nathan Ridge
parent 4c28983459
commit 6f0ab4a8be
2 changed files with 2 additions and 2 deletions

2
include/boost/range/algorithm/unique.hpp Executable file → Normal file
View File

@ -86,7 +86,7 @@ unique( const ForwardRange& rng )
/// \overload
template< class ForwardRange, class BinaryPredicate >
inline BOOST_DEDUCED_TYPENAME range_return<ForwardRange, return_begin_found>::type
unique( ForwardRange& rng, BinaryPredicate pred )
unique( ForwardRange& rng, BinaryPredicate )
{
BOOST_RANGE_CONCEPT_ASSERT(( ForwardRangeConcept<ForwardRange> ));
return ::boost::range::unique<return_begin_found>(rng);