Open xmh0511 opened 2 years ago
Putting two entirely different topics into the same issue is unhelpful; please split.
Regarding the first issue, this is probably CWG1668. In particular, "This transformation does not affect the types of the parameters." wants to say "does not affect the types of the parameter variables."
In your example, the parameter type (both as appearing in the function type and as the type of the parameter variable) is "pointer to function".
Regarding the first issue, this is probably CWG1668.
Yes, we agree that the type of the parameter is a bit unclear when it refers to in different contexts.
In your example, the parameter type (both as appearing in the function type and as the type of the parameter variable) is "pointer to function".
A different perspective to CWG1668 is that this issue is talking about the type of the parameter from the view of the declaration. [basic.pre] p5 says
Every name is introduced by a declaration, which is a
- [...]
- parameter-declaration ([dcl.fct]),
An entity E is denoted by the name (if any) that is introduced by a declaration of E ...
Anyway, the parameter-declaration int a()
and int arr[2]
matches [dcl.fct] and [dcl.array] in terms of their grammar. That is, the former is a declaration that declares a function, and the latter is a declaration that declares an array. decltype(a)
and decltype(arr)
should be function type and array, as per [dcl.type.decltype] p1.3. However, the intent is the former should be pointer to function type and the latter should be pointer to the element's type. So, we should clearly state the transformation
After determining the type of each parameter, any parameter of type “array of T” or of function type T is adjusted to be “pointer to T”.
should also affect the type of the parameter whenever the determination of the type of such a parameter is required. Furthermore, we should also clearly state what the type of a parameter is when the type is used in overload resolution(i.e. the type of the parameter or the type of the parameter in the function type).
Putting two entirely different topics into the same issue is unhelpful; please split.
I have done that. Please check it.
[over.best.ics.general] p1 says
[over.best.ics.general] p6 says
Consider this example:
Is the type of the parameter
a
be considered asfunction of () returning int
or "pointer to function of () returning int" that is after adjustment?Since [dcl.fct.note] p3 says
The parameter-declaration
int a()
matches [dl.fct] and thus it's original type is function type. Does the type of the parameter mean the type of the parameter in parameter-type-list? Such asFor the purpose of defining implicit conversion sequence, the type of
a
andb
arepointer to function of () returning int
andint
, respectively.BTW, the adjustment for the types of parameters that is "array of T" or "function type T" does not only affect parameter-type-list but also affect the type when determining the type of the entity, such as the result of
decltype(a)
ispointer to function of () returning int
rather thanfunction of () returning int
butdecltype(b)
is exactlyconst int
. [dcl.fct] p5 may need to be improved to make that meaning clear.This sounds like all transformations only affect the determination of the function's parameter-type-list.