diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 13ecdfe..3e3d07f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -2297,7 +2297,7 @@ If you have performance justification to optimize for rvalues, overload on `&&` **Example**: void incr(int&); - int incr(); + int incr(int); int i = 0; incr(i);