C.63: Fix a minor typo (#1760)

In accordance with the title at line 4568, use `const&` instead of `const &`.
This commit is contained in:
nullptr-cpp 2021-03-26 02:08:46 +08:00 committed by GitHub
parent af44f95577
commit 5f75ea4b4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6032,7 +6032,7 @@ Consider:
(Simple) Assignment operators should not contain the pattern `if (this == &a) return *this;` ???
### <a name="Rc-move-assignment"></a>C.63: Make move assignment non-`virtual`, take the parameter by `&&`, and return by non-`const &`
### <a name="Rc-move-assignment"></a>C.63: Make move assignment non-`virtual`, take the parameter by `&&`, and return by non-`const&`
##### Reason