Get rid of some unused parameters to avoid warnings.

[SVN r11213]
This commit is contained in:
Darin Adler
2001-09-22 19:36:14 +00:00
parent 405addeb82
commit 617c71d2f7

View File

@@ -59,12 +59,12 @@ void is_function_tester<T>::check()
}
template <class T>
void is_function_test(T* foo)
void is_function_test(T*)
{
is_function_tester<T>::check();
}
template <class T>
void is_function_test(T foo)
void is_function_test(T)
{
is_function_tester<T>::check();
}