Description
Paragraphs 8 and 9 talk about what kind of function pointer a capture-less lambda is convertible to:
... has a conversion function to pointer to function with C++ language linkage having the same parameter and return types as the closure type's function call operator.
and
... The conversion function template has the same invented template parameter list, and the pointer to function has the same parameter types, as the function call operator template.
Those aren't quite right in the case of an explicit object parameter. Since this should probably work:
using P = int(*)(int);
auto f = [](this P, int i) { return i; };
auto g = [](this auto, int i) { return i; };
P pf = f;
P pg = g;
For the non-generic case, something like this:
- having the same parameter and return types as the closure type's function call operator
+ having the same parameter types (excluding the explicit object parameter, if any) and return type as the closure type's function call operator
Though wording this for the generic case is trickier since we need to skip the invented template parameter of the explicit object parameter, which might hypothetically also be used by some other parameter?
Activity
cpplearner commentedon Feb 14, 2022
IIUC the explicit object parameter could be used in the lambda-expression. E. g.
IIUC if the conversion function excludes the explicit object parameter, then the above
lambda
would be convertible tovoid(*)()
, and the resulting function pointer would point to a function that callsc.f()
for some nonexistentc
. I don't think this makes sense.jensmaurer commentedon Feb 14, 2022
Sounds like non-editorial CWG issue material to me.
brevzin commentedon Feb 14, 2022
Yeah, definitely. I just wasn't sure if you preferred me emailing Core or posting it here.
And per @cpplearner's comment, the wording may not even be wrong 😄.
Yeah, with some more thought,
[](this C c) { c.f(); }
has to be avoid(*)(C)
, which I think means that the wording is correct.cmeerw commentedon Apr 1, 2022
But I think we still need to change
as it's not clear what that would mean, e.g.
(
fp
should instead just be the address of the function call operator?)jensmaurer commentedon Apr 2, 2022
Why is
fp
a pointer to function returningvoid
when the lambda returnsint
?jensmaurer commentedon Apr 2, 2022
CWG2561
[-][expr.prim.lambda.closure] Conversion to function pointer doesn't account for explicit object parameter[/-][+][expr.prim.lambda.closure] Conversion to function pointer doesn't account for explicit object parameter CWG2561[/+]