range: silence some warnings

[SVN r85584]
This commit is contained in:
Tim Blechmann
2013-09-06 08:51:00 +00:00
parent b4f00e3c18
commit 2480b52f5b
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);