mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-05 08:46:34 +02:00
unused parameters removed
[SVN r35753]
This commit is contained in:
@ -26,20 +26,17 @@ namespace boost {
|
|||||||
template<
|
template<
|
||||||
typename OutputIteratorT,
|
typename OutputIteratorT,
|
||||||
typename InputT,
|
typename InputT,
|
||||||
typename FinderT,
|
|
||||||
typename FormatterT,
|
typename FormatterT,
|
||||||
typename FindResultT >
|
typename FindResultT >
|
||||||
inline OutputIteratorT find_format_copy_impl(
|
inline OutputIteratorT find_format_copy_impl(
|
||||||
OutputIteratorT Output,
|
OutputIteratorT Output,
|
||||||
const InputT& Input,
|
const InputT& Input,
|
||||||
FinderT Finder,
|
|
||||||
FormatterT Formatter,
|
FormatterT Formatter,
|
||||||
const FindResultT& FindResult )
|
const FindResultT& FindResult )
|
||||||
{
|
{
|
||||||
return find_format_copy_impl2(
|
return find_format_copy_impl2(
|
||||||
Output,
|
Output,
|
||||||
Input,
|
Input,
|
||||||
Finder,
|
|
||||||
Formatter,
|
Formatter,
|
||||||
FindResult,
|
FindResult,
|
||||||
Formatter(FindResult) );
|
Formatter(FindResult) );
|
||||||
@ -48,14 +45,12 @@ namespace boost {
|
|||||||
template<
|
template<
|
||||||
typename OutputIteratorT,
|
typename OutputIteratorT,
|
||||||
typename InputT,
|
typename InputT,
|
||||||
typename FinderT,
|
|
||||||
typename FormatterT,
|
typename FormatterT,
|
||||||
typename FindResultT,
|
typename FindResultT,
|
||||||
typename FormatResultT >
|
typename FormatResultT >
|
||||||
inline OutputIteratorT find_format_copy_impl2(
|
inline OutputIteratorT find_format_copy_impl2(
|
||||||
OutputIteratorT Output,
|
OutputIteratorT Output,
|
||||||
const InputT& Input,
|
const InputT& Input,
|
||||||
FinderT Finder,
|
|
||||||
FormatterT Formatter,
|
FormatterT Formatter,
|
||||||
const FindResultT& FindResult,
|
const FindResultT& FindResult,
|
||||||
const FormatResultT& FormatResult )
|
const FormatResultT& FormatResult )
|
||||||
@ -91,18 +86,15 @@ namespace boost {
|
|||||||
|
|
||||||
template<
|
template<
|
||||||
typename InputT,
|
typename InputT,
|
||||||
typename FinderT,
|
|
||||||
typename FormatterT,
|
typename FormatterT,
|
||||||
typename FindResultT >
|
typename FindResultT >
|
||||||
inline InputT find_format_copy_impl(
|
inline InputT find_format_copy_impl(
|
||||||
const InputT& Input,
|
const InputT& Input,
|
||||||
FinderT Finder,
|
|
||||||
FormatterT Formatter,
|
FormatterT Formatter,
|
||||||
const FindResultT& FindResult)
|
const FindResultT& FindResult)
|
||||||
{
|
{
|
||||||
return find_format_copy_impl2(
|
return find_format_copy_impl2(
|
||||||
Input,
|
Input,
|
||||||
Finder,
|
|
||||||
Formatter,
|
Formatter,
|
||||||
FindResult,
|
FindResult,
|
||||||
Formatter(FindResult) );
|
Formatter(FindResult) );
|
||||||
@ -110,13 +102,11 @@ namespace boost {
|
|||||||
|
|
||||||
template<
|
template<
|
||||||
typename InputT,
|
typename InputT,
|
||||||
typename FinderT,
|
|
||||||
typename FormatterT,
|
typename FormatterT,
|
||||||
typename FindResultT,
|
typename FindResultT,
|
||||||
typename FormatResultT >
|
typename FormatResultT >
|
||||||
inline InputT find_format_copy_impl2(
|
inline InputT find_format_copy_impl2(
|
||||||
const InputT& Input,
|
const InputT& Input,
|
||||||
FinderT Finder,
|
|
||||||
FormatterT Formatter,
|
FormatterT Formatter,
|
||||||
const FindResultT& FindResult,
|
const FindResultT& FindResult,
|
||||||
const FormatResultT& FormatResult)
|
const FormatResultT& FormatResult)
|
||||||
@ -151,18 +141,15 @@ namespace boost {
|
|||||||
|
|
||||||
template<
|
template<
|
||||||
typename InputT,
|
typename InputT,
|
||||||
typename FinderT,
|
|
||||||
typename FormatterT,
|
typename FormatterT,
|
||||||
typename FindResultT >
|
typename FindResultT >
|
||||||
inline void find_format_impl(
|
inline void find_format_impl(
|
||||||
InputT& Input,
|
InputT& Input,
|
||||||
FinderT Finder,
|
|
||||||
FormatterT Formatter,
|
FormatterT Formatter,
|
||||||
const FindResultT& FindResult)
|
const FindResultT& FindResult)
|
||||||
{
|
{
|
||||||
find_format_impl2(
|
find_format_impl2(
|
||||||
Input,
|
Input,
|
||||||
Finder,
|
|
||||||
Formatter,
|
Formatter,
|
||||||
FindResult,
|
FindResult,
|
||||||
Formatter(FindResult) );
|
Formatter(FindResult) );
|
||||||
@ -170,13 +157,11 @@ namespace boost {
|
|||||||
|
|
||||||
template<
|
template<
|
||||||
typename InputT,
|
typename InputT,
|
||||||
typename FinderT,
|
|
||||||
typename FormatterT,
|
typename FormatterT,
|
||||||
typename FindResultT,
|
typename FindResultT,
|
||||||
typename FormatResultT >
|
typename FormatResultT >
|
||||||
inline void find_format_impl2(
|
inline void find_format_impl2(
|
||||||
InputT& Input,
|
InputT& Input,
|
||||||
FinderT,
|
|
||||||
FormatterT Formatter,
|
FormatterT Formatter,
|
||||||
const FindResultT& FindResult,
|
const FindResultT& FindResult,
|
||||||
const FormatResultT& FormatResult)
|
const FormatResultT& FormatResult)
|
||||||
|
@ -71,7 +71,6 @@ namespace boost {
|
|||||||
return detail::find_format_copy_impl(
|
return detail::find_format_copy_impl(
|
||||||
Output,
|
Output,
|
||||||
Input,
|
Input,
|
||||||
Finder,
|
|
||||||
Formatter,
|
Formatter,
|
||||||
Finder( begin(Input), end(Input) ) );
|
Finder( begin(Input), end(Input) ) );
|
||||||
}
|
}
|
||||||
@ -100,7 +99,6 @@ namespace boost {
|
|||||||
|
|
||||||
return detail::find_format_copy_impl(
|
return detail::find_format_copy_impl(
|
||||||
Input,
|
Input,
|
||||||
Finder,
|
|
||||||
Formatter,
|
Formatter,
|
||||||
Finder(begin(Input), end(Input)));
|
Finder(begin(Input), end(Input)));
|
||||||
}
|
}
|
||||||
@ -134,7 +132,6 @@ namespace boost {
|
|||||||
|
|
||||||
detail::find_format_impl(
|
detail::find_format_impl(
|
||||||
Input,
|
Input,
|
||||||
Finder,
|
|
||||||
Formatter,
|
Formatter,
|
||||||
Finder(begin(Input), end(Input)));
|
Finder(begin(Input), end(Input)));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user