Removed all of the deprecated parameters and made them variables

[SVN r14578]
This commit is contained in:
Douglas Gregor
2002-07-23 21:57:57 +00:00
parent 2963cb89a8
commit 9db8577d16
2 changed files with 8 additions and 8 deletions

View File

@ -322,9 +322,9 @@ namespace boost {
}
template<typename Functor>
void set(Functor BOOST_FUNCTION_TARGET_FIX(const &) f,
int deprecated = 0)
void set(Functor BOOST_FUNCTION_TARGET_FIX(const &) f)
{
int deprecated;
self_type(f, static_cast<const Mixin&>(*this)).swap(*this);
}