mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 20:54:41 +03:00
Added alternative fix for PR #132
This commit is contained in:
@@ -2297,7 +2297,7 @@ If you have performance justification to optimize for rvalues, overload on `&&`
|
|||||||
**Example**:
|
**Example**:
|
||||||
|
|
||||||
void incr(int&);
|
void incr(int&);
|
||||||
int incr();
|
int incr(int);
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
incr(i);
|
incr(i);
|
||||||
|
|||||||
Reference in New Issue
Block a user