Merge pull request #990 from isocpp/issue-989

Remove confusing "copy" in discussion of move ops
This commit is contained in:
Gabriel Dos Reis 2017-07-20 09:24:48 -07:00 committed by GitHub
commit 2a1472657f

View File

@ -5976,7 +5976,7 @@ A non-throwing move will be used more efficiently by standard-library and langua
int sz;
};
These copy operations do not throw.
These operations do not throw.
##### Example, bad