unused parameter warning removal

[SVN r25671]
This commit is contained in:
Pavol Droba
2004-10-11 18:28:21 +00:00
parent 0a0facd7c7
commit 5d1448f3ac
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ namespace boost {
typename FormatResultT >
inline void find_format_impl2(
InputT& Input,
FinderT Finder,
FinderT,
FormatterT Formatter,
const FindResultT& FindResult,
const FormatResultT& FormatResult)

View File

@ -72,7 +72,7 @@ namespace boost {
template<typename CollectionT>
inline detail::empty_formatF<
BOOST_STRING_TYPENAME value_type_of<CollectionT>::type>
empty_formatter(const CollectionT& Input)
empty_formatter(const CollectionT&)
{
return detail::empty_formatF<
BOOST_STRING_TYPENAME value_type_of<CollectionT>::type>();