From 537e15d0af0a95aeb89f3adecf8281a170b029cb Mon Sep 17 00:00:00 2001 From: kjpgit Date: Wed, 7 Oct 2015 20:17:43 -0500 Subject: [PATCH] C40: correct enforcement wording --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 5d3f273..f18e2df 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -3807,7 +3807,7 @@ Also, the default for `int` would be better done as a [member initializer](#Rc-i ##### Enforcement -* Flag classes with user-define copy operations but no destructor (a user-defined copy is a good indicator that the class has an invariant) +* Flag classes with user-define copy operations but no constructor (a user-defined copy is a good indicator that the class has an invariant) ### C.41: A constructor should create a fully initialized object