2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-21 04:52:25 +00:00

removed weird linebreaks

[SVN r11733]
This commit is contained in:
Jaakko Järvi
2001-11-19 22:09:01 +00:00
parent bcc486c8e6
commit 4d49196c48

View File

@@ -178,6 +178,10 @@ struct function_adaptor<Result (*)(Arg1, Arg2)> {
static Result apply(Result (*func)(Arg1, Arg2), A1& a1, A2& a2) {
return func(a1, a2);
}
template <class A1, class F>
static Result apply(F func, A1& a1) {
return func(a1);
}
};