From 617c71d2f75d14ddfb446476ea763ea78fc51e21 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Sat, 22 Sep 2001 19:36:14 +0000 Subject: [PATCH] Get rid of some unused parameters to avoid warnings. [SVN r11213] --- tests/is_function_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/is_function_test.cpp b/tests/is_function_test.cpp index cac26ac..39094a6 100644 --- a/tests/is_function_test.cpp +++ b/tests/is_function_test.cpp @@ -59,12 +59,12 @@ void is_function_tester::check() } template -void is_function_test(T* foo) +void is_function_test(T*) { is_function_tester::check(); } template -void is_function_test(T foo) +void is_function_test(T) { is_function_tester::check(); }