diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 268ecb4cd84b91fe23cf13558245dc7d31fdf622..8aae3cbc9d9f79d819a0bf9fd3fe67842cf01656 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4745,7 +4745,7 @@ into more expensive copies, or making a class move-only. // ... } -Given that "special attention" was needed for the destructor (here, to deallocate), the likelihood that copy and move assignment (both will implicitly destroy an object) are correct is low (here, we would get double deletion). +Given that "special attention" was needed for the destructor (here, to deallocate), the likelihood that copy and move assignment (which are generated by the compiler and both will implicitly destroy an object) are correct is low (here, we would get double deletion). ##### Note