From 9ae841ecf29d42fb20ed4ece2dd884d07abf286c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Mon, 18 Mar 2002 17:01:19 +0000 Subject: [PATCH] removed parameter names (just the types are left) to prevent unused parameter warnings with some compilers [SVN r13218] --- include/boost/lambda/detail/select_functions.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/lambda/detail/select_functions.hpp b/include/boost/lambda/detail/select_functions.hpp index f1ee55c..debb41d 100644 --- a/include/boost/lambda/detail/select_functions.hpp +++ b/include/boost/lambda/detail/select_functions.hpp @@ -40,19 +40,19 @@ template struct selector { // The cases cover all other placeholders template <> struct selector { template - static RET select(Op& op, A& a, B& b, C& c) { + static RET select(Op& op, A&, B&, C&) { return op.template ret_call(); } }; template <> struct selector { template - static RET select(Op& op, A& a, B& b, C& c) { + static RET select(Op& op, A& a, B&, C&) { return op.template ret_call(a); } }; template <> struct selector { template - static RET select(Op& op, A& a, B& b, C& c) { + static RET select(Op& op, A& a, B& b, C&) { return op.template ret_call(a, b); } };