From 1d9be95ee0b9d0243f56626990c3fdd056486ff2 Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Fri, 25 Sep 2015 11:38:54 -0700 Subject: [PATCH] Added alternative fix for PR #132 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);