mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
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:
parent
af44f95577
commit
5f75ea4b4b
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user