From fbe72097b42eaf45e30c79446206ce884e010302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Fri, 24 May 2002 19:33:24 +0000 Subject: [PATCH] bugfix in make_void [SVN r14042] --- include/boost/lambda/detail/ret.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/lambda/detail/ret.hpp b/include/boost/lambda/detail/ret.hpp index eb81d24..f4e93ec 100644 --- a/include/boost/lambda/detail/ret.hpp +++ b/include/boost/lambda/detail/ret.hpp @@ -291,7 +291,7 @@ lambda_functor< > make_void(const Arg1& a1) { return - lambda_functor_base(null_type()); + lambda_functor_base(); } // std_functor -----------------------------------------------------