diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4ada92e..b1f6c38 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -6032,7 +6032,7 @@ Consider: (Simple) Assignment operators should not contain the pattern `if (this == &a) return *this;` ??? -### C.63: Make move assignment non-`virtual`, take the parameter by `&&`, and return by non-`const &` +### C.63: Make move assignment non-`virtual`, take the parameter by `&&`, and return by non-`const&` ##### Reason