From 4d49196c48459f45de49194d2e3443a83c7559cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Mon, 19 Nov 2001 22:09:01 +0000 Subject: [PATCH] removed weird linebreaks [SVN r11733] --- include/boost/lambda/detail/function_adaptors.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/lambda/detail/function_adaptors.hpp b/include/boost/lambda/detail/function_adaptors.hpp index f09c54a..abe1693 100644 --- a/include/boost/lambda/detail/function_adaptors.hpp +++ b/include/boost/lambda/detail/function_adaptors.hpp @@ -178,6 +178,10 @@ struct function_adaptor { static Result apply(Result (*func)(Arg1, Arg2), A1& a1, A2& a2) { return func(a1, a2); } + template + static Result apply(F func, A1& a1) { + return func(a1); + } };