This commit is contained in:
Herb Sutter
2025-12-03 12:06:20 -08:00
parent a102f15e7a
commit f52da2b27e

View File

@@ -5799,7 +5799,7 @@ Using default member initializers lets the compiler generate the function for yo
##### Enforcement ##### Enforcement
(Simple) A default constructor should do more than just initialize data members with constants. (Simple) Flag if a default constructor's explicit member initializer is a constant, and recommend that the constant should be written as a data member initializer instead.
### <a name="rc-explicit"></a>C.46: By default, declare single-argument constructors explicit ### <a name="rc-explicit"></a>C.46: By default, declare single-argument constructors explicit