Title
Access checking during synthesis of defaulted comparison operator, take 2
Status
open
Section
11.10.1 [class.compare.default]
Submitter
Jason Merrill

Created on 2025-03-13.00:00:00 last changed 3 weeks ago

Messages

Date: 2025-03-15.00:00:00

Additional notes (March, 2025)

EWG should decide whether the design intent is to allow access to Base::operator== in the example. Forwarded to EWG with paper issue #2239 by decision of the CWG chair.

Date: 2025-03-13.00:00:00

Issue 2568 sought to make the following situation well-formed:

   struct Base {
   protected:
     bool operator==(const Base& other) const = default;
   };

   struct Child : Base {
     int i;
     bool operator==(const Child& other) const = default;
   };

   bool b = Child() == Child(); // error: deleted operator==

However, the applied resolution of that issue failed to achieve the intent, because the object expression has type Base when invoking Base::operator== in the synthesized body of Child::operator==, per 11.10.1 [class.compare.default] paragraph 5 together with 11.10.2 [class.eq] paragraph 2 and 11.10.3 [class.spaceship] paragraph 2. The synthesized body of Child::operator== looks like this:

   bool Child::operator==(const Child& other) const
   {
     return (static_cast<const Base&>(*this) == static_cast<const Base&>(other)); // error, protected
   }
History
Date User Action Args
2025-03-14 09:54:22adminsetmessages: + msg7992
2025-03-13 00:00:00admincreate