From d8683f24983621322e30c71191ea5d5a8c2d5637 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Fri, 27 Oct 2006 17:37:37 +0000 Subject: [PATCH] unused parameters removed [SVN r35753] --- .../boost/algorithm/string/detail/find_format.hpp | 15 --------------- include/boost/algorithm/string/find_format.hpp | 3 --- 2 files changed, 18 deletions(-) diff --git a/include/boost/algorithm/string/detail/find_format.hpp b/include/boost/algorithm/string/detail/find_format.hpp index 9382f0e..2ba7ba2 100644 --- a/include/boost/algorithm/string/detail/find_format.hpp +++ b/include/boost/algorithm/string/detail/find_format.hpp @@ -26,20 +26,17 @@ namespace boost { template< typename OutputIteratorT, typename InputT, - typename FinderT, typename FormatterT, typename FindResultT > inline OutputIteratorT find_format_copy_impl( OutputIteratorT Output, const InputT& Input, - FinderT Finder, FormatterT Formatter, const FindResultT& FindResult ) { return find_format_copy_impl2( Output, Input, - Finder, Formatter, FindResult, Formatter(FindResult) ); @@ -48,14 +45,12 @@ namespace boost { template< typename OutputIteratorT, typename InputT, - typename FinderT, typename FormatterT, typename FindResultT, typename FormatResultT > inline OutputIteratorT find_format_copy_impl2( OutputIteratorT Output, const InputT& Input, - FinderT Finder, FormatterT Formatter, const FindResultT& FindResult, const FormatResultT& FormatResult ) @@ -91,18 +86,15 @@ namespace boost { template< typename InputT, - typename FinderT, typename FormatterT, typename FindResultT > inline InputT find_format_copy_impl( const InputT& Input, - FinderT Finder, FormatterT Formatter, const FindResultT& FindResult) { return find_format_copy_impl2( Input, - Finder, Formatter, FindResult, Formatter(FindResult) ); @@ -110,13 +102,11 @@ namespace boost { template< typename InputT, - typename FinderT, typename FormatterT, typename FindResultT, typename FormatResultT > inline InputT find_format_copy_impl2( const InputT& Input, - FinderT Finder, FormatterT Formatter, const FindResultT& FindResult, const FormatResultT& FormatResult) @@ -151,18 +141,15 @@ namespace boost { template< typename InputT, - typename FinderT, typename FormatterT, typename FindResultT > inline void find_format_impl( InputT& Input, - FinderT Finder, FormatterT Formatter, const FindResultT& FindResult) { find_format_impl2( Input, - Finder, Formatter, FindResult, Formatter(FindResult) ); @@ -170,13 +157,11 @@ namespace boost { template< typename InputT, - typename FinderT, typename FormatterT, typename FindResultT, typename FormatResultT > inline void find_format_impl2( InputT& Input, - FinderT, FormatterT Formatter, const FindResultT& FindResult, const FormatResultT& FormatResult) diff --git a/include/boost/algorithm/string/find_format.hpp b/include/boost/algorithm/string/find_format.hpp index c2683b9..7a7d87b 100644 --- a/include/boost/algorithm/string/find_format.hpp +++ b/include/boost/algorithm/string/find_format.hpp @@ -71,7 +71,6 @@ namespace boost { return detail::find_format_copy_impl( Output, Input, - Finder, Formatter, Finder( begin(Input), end(Input) ) ); } @@ -100,7 +99,6 @@ namespace boost { return detail::find_format_copy_impl( Input, - Finder, Formatter, Finder(begin(Input), end(Input))); } @@ -134,7 +132,6 @@ namespace boost { detail::find_format_impl( Input, - Finder, Formatter, Finder(begin(Input), end(Input))); }