forked from boostorg/type_traits
Get rid of some unused parameters to avoid warnings.
[SVN r11213]
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user