wg21.cmeerw.net

A function definition of the form:

is called an explicitly-defaulted definition. Only special member functions may be explicitly defaulted, and the implementation shall define them as if they had implicit definitions (11.4.5 [class.ctor], 11.4.7 [class.dtor], 11.4.5.3 [class.copy.ctor]). A function that is explicitly defaulted shall

  • be a special member function,

  • have the same declared function type (except for possibly-differing ref-qualifiers and except that in the case of a copy constructor or copy assignment operator, the parameter type may be “reference to non-const T ,” where T is the name of the member function's class) as if it had been implicitly declared,

  • not have default arguments, and

  • not have an exception-specification.

[Note: This implies that parameter types, return type, and cv-qualifiers must match the hypothetical implicit declaration. —end note] An explicitly-defaulted function may be declared constexpr only if it would have been implicitly declared as constexpr. If it is explicitly defaulted on its first declaration,

  • it shall be public,

  • it shall not be explicit,

  • it shall not be virtual,

  • it is implicitly considered to have the same exception-specification as if it had been implicitly declared (14.5 [except.spec]), and

  • in the case of a copy constructor or copy assignment operator, it shall have the same parameter type as if it had been implicitly declared.

[Note: Such a special member function may be trivial, and thus its accessibility and explicitness should match the hypothetical implicit definition; see below. —end note] [Example:

  struct S {
    S(int a = 0) = default;              // ill-formed: default argument
    void operator=(const S&) = default;  // ill-formed: non-matching return type
    ~S() throw() = default;              // ill-formed: exception-specification
  private:
    S(S&);                               // OK: private copy constructor
  };
  S::S(S&) = default;                    // OK: defines copy constructor

end example] Explicitly-defaulted functions and implicitly-declared functions are collectively called defaulted functions, and the implementation shall provide implicit definitions for them (11.4.5 [class.ctor], 11.4.7 [class.dtor], 11.4.5.3 [class.copy.ctor]), which might mean defining them as deleted.A special member function that would be implicitly defined as deleted may be explicitly defaulted only on its first declaration, in which case it is defined as deleted. A special member function is user-provided if it is user-declared and not explicitly defaulted on its first declaration. A user-provided explicitly-defaulted function is defined at the point where it is explicitly defaulted. [Note:...

[Editorial note: this change incorporates the overlapping portion of the resolution of issue 667.]

Read the original on wg21.cmeerw.net ↗