Added alternative fix for PR #132

This commit is contained in:
Andrew Pardoe 2015-09-25 11:38:54 -07:00
parent 3706f991fc
commit 1d9be95ee0

View File

@ -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);