2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-20 16:42:16 +00:00

bugfix in make_void

[SVN r14042]
This commit is contained in:
Jaakko Järvi
2002-05-24 19:33:24 +00:00
parent 2f24d3f261
commit fbe72097b4

View File

@@ -291,7 +291,7 @@ lambda_functor<
>
make_void(const Arg1& a1) {
return
lambda_functor_base<do_nothing_action, null_type>(null_type());
lambda_functor_base<do_nothing_action, null_type>();
}
// std_functor -----------------------------------------------------