2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-21 17:02:36 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Jaakko Järvi
ee5a93d90f Merged fix to suppress gcc3.4 warnings in make_void from main trunk to branch
[SVN r21504]
2004-01-05 16:18:02 +00:00
nobody
9df574d2ad This commit was manufactured by cvs2svn to create branch 'RC_1_31_0'.
[SVN r21427]
2003-12-30 12:10:04 +00:00
3 changed files with 2 additions and 2 deletions

0
dummy
View File

View File

@@ -315,7 +315,7 @@ public:
template<class RET, CALL_TEMPLATE_ARGS> RET call(CALL_FORMAL_ARGS) const {
CALL_USE_ARGS;
return CALL_USE_ARGS;
}
template<class SigArgs> struct sig { typedef void type; };

View File

@@ -257,7 +257,7 @@ const_parameters(const lambda_functor<Arg>& lf)
// the wrapped lambda functor is evaluated, but we just don't do anything
// with the result.
struct voidifier_action {
template<class Ret, class A> static Ret apply(A&) {}
template<class Ret, class A> static void apply(A&) {}
};
template<class Args> struct return_type_N<voidifier_action, Args> {