Title
Name lookup in member friend declaration
Status
nad
Section
6.5.3 [basic.lookup.unqual]
Submitter
Richard Smith

Created on 2014-03-30.00:00:00 last changed 73 months ago

Messages

Date: 2018-03-15.00:00:00

Rationale (March, 2018):

After further discussion, CWG determined that the semantics described in the existing wording were the most appropriate out of the alternatives considered.

Date: 2018-02-15.00:00:00

Notes from the February, 2018 teleconference:

There was some concern as to whether the added lookup for friend function declarations placed the additional lookups in the correct sequence relative to the existing lookups and whether the new specification reflects any existing practice.

Date: 2018-02-15.00:00:00

Proposed resolution (February, 2018):

  1. Change 6.5.3 [basic.lookup.unqual] paragraph 8 as follows:

  2. For the members of a class X, a name used in a member function body, in a default argument, in a noexcept-specifier, in the brace-or-equal-initializer of a non-static data member (11.4 [class.mem]), or in the definition declaration of a class member outside of the definition of X, following the member's declarator-id32, shall be declared in one of the following ways:

    • before its use in the block in which it is used or in an enclosing block (8.4 [stmt.block]) within the body of the member function, or

    • shall be as a member of class X or be as a member of a base class of X (6.5.2 [class.member.lookup]), or

    • if X is a nested class of class Y (11.4.12 [class.nest]), shall be a member of Y, or shall be a member of a base class of Y (this lookup applies in turn to Y's enclosing classes, starting with the innermost enclosing class),33 or

    • if X is a local class (11.6 [class.local]) or is a nested class of a local class, before the definition of class X in a block enclosing the definition of class X, or

    • if X is a member of namespace N, or is a nested class of a class that is a member of N, or is a local class or a nested class within a local class of a function that is a member of N, before the use of the name, in namespace N or in one of N's enclosing namespaces., or

    • for a friend declaration in a class Y, in a scope that would be searched for a name appearing within Y.

  3. Delete 6.5.3 [basic.lookup.unqual] paragraph 10 and combine its example with that of paragraph 8:

  4. In a friend declaration naming a member function, a name used in the function declarator and not part of a template-argument in the declarator-id is first looked up in the scope of the member function's class (6.5.2 [class.member.lookup]). If it is not found, or if the name is part of a template-argument in the declarator-id, the look up is as described for unqualified names in the definition of the class granting friendship. [Example:

      struct A {
        typedef int AT;
        void f1(AT);
        void f2(float);
        template <class T> void f3();
      };
      struct B {
        typedef char AT;
        typedef float BT;
        friend void A::f1(AT);     // parameter type is A::AT
        friend void A::f2(BT);     // parameter type is B::BT
        friend void A::f3<AT>(); // template argument is B::AT
      };
    

    end example]

Date: 2014-03-30.00:00:00

According to 6.5.3 [basic.lookup.unqual] paragraph 10,

In a friend declaration naming a member function, a name used in the function declarator and not part of a template-argument in the declarator-id is first looked up in the scope of the member function's class (6.5.2 [class.member.lookup]). If it is not found, or if the name is part of a template-argument in the declarator-id, the look up is as described for unqualified names in the definition of the class granting friendship.

The corresponding specification for non-friend declarations in paragraph 8 applies the class-scope lookup only to names that follow the declarator-id. The same should be true in friend declarations.

History
Date User Action Args
2018-04-11 00:00:00adminsetmessages: + msg6212
2018-04-11 00:00:00adminsetstatus: review -> nad
2018-02-27 00:00:00adminsetmessages: + msg5879
2018-02-27 00:00:00adminsetmessages: + msg5878
2018-02-27 00:00:00adminsetstatus: drafting -> review
2014-07-07 00:00:00adminsetstatus: open -> drafting
2014-03-30 00:00:00admincreate