Title
Value category of expressions denoting non-static member functions
Status
cd6
Section
7.6.1.5 [expr.ref]
Submitter
Andrey Erokhin

Created on 2020-07-04.00:00:00 last changed 20 months ago

Messages

Date: 2021-04-15.00:00:00

Proposed resolution (April, 2021):

  1. Change 7.5.4.3 [expr.prim.id.qual] paragraph 5, converting the running text into a bulleted list, as follows:

  2. The result of a qualified-id Q is the entity it denotes (6.5.5 [basic.lookup.qual]). The type of the expression is the type of the result. The result is an lvalue if the member is

    • a function other than a non-static member function,

    • a non-static member function if Q is the operand of a unary & operator,

    • a variable,

    • a structured binding (9.6 [dcl.struct.bind]), or

    • a static member function, or

    • a data member,

    and a prvalue otherwise.

  3. Change 7.6.2.2 [expr.unary.op] paragraph 3 as follows:

  4. The result of the The operand of the unary & operator shall be an lvalue of some type T. The result is a pointer to its operand prvalue.

    • If the operand is a qualified-id naming a non-static or variant member m of some class C with type T, the result has type “pointer to member of class C of type T” and is a prvalue designating designates C::m.

    • Otherwise, if the operand is an lvalue of type T, the resulting expression is a prvalue of result has type “pointer to Twhose result is a pointer and points to the designated object (6.7.1 [intro.memory]) or function (6.8.4 [basic.compound]). [Note 2: In particular, taking the address of a variable of type “cv T” yields a pointer of type “pointer to cv T”. —end note]

    • Otherwise, the program is ill-formed.

[Drafting note: neither 7.6.1.5 [expr.ref] bullet 6.3.2,

  • Otherwise (when E2 refers to a non-static member function), E1.E2 is a prvalue. The expression can be used only as the left-hand operand of a member function call (11.4.2 [class.mfct]). [Note 5: Any redundant set of parentheses surrounding the expression is ignored (7.5.3 [expr.prim.paren]). —end note]

nor 7.6.4 [expr.mptr.oper] paragraph 6,

...The result of a .* expression whose second operand is a pointer to a member function is a prvalue...

requires any change.]

Date: 2020-08-15.00:00:00

Notes from the August, 2020 teleconference:

CWG preferred that the unbound case (i.e., &X::f) should be an lvalue, while the bound case should be a prvalue.

Date: 2021-06-15.00:00:00

[Accepted as a DR at the June, 2021 meeting.]

Expressions denoting non-static member functions are currently classified as prvalues (7.5.4.3 [expr.prim.id.qual] paragraph 2; 7.6.1.5 [expr.ref] bullet 6.3.2; and 7.6.4 [expr.mptr.oper] paragraph 6). It would simplify the specification if such expressions were categorized as lvalues. (See also this pull request.)

History
Date User Action Args
2022-08-19 07:54:33adminsetstatus: drwp -> cd6
2021-11-15 00:00:00adminsetmessages: + msg6583
2021-11-15 00:00:00adminsetstatus: drafting -> drwp
2020-12-15 00:00:00adminsetmessages: + msg6234
2020-07-04 00:00:00admincreate