Merge pull request #558 from pmalek/master

Updated comments after updating variable names in ES.56
This commit is contained in:
Andrew Pardoe 2016-03-20 15:36:52 -07:00
commit 30c9ffaa3e

View File

@ -9610,7 +9610,7 @@ Explicit `move` is needed to explicitly move an object to another scope, notably
{ {
X x; X x;
sink(x); // error: cannot bind an lvalue to a rvalue reference sink(x); // error: cannot bind an lvalue to a rvalue reference
sink(std::move(x)); // OK: sink takes the contents of r, r must now assumed to be empty sink(std::move(x)); // OK: sink takes the contents of x, x must now be assumed to be empty
// ... // ...
use(x); // probably a mistake use(x); // probably a mistake
} }