diff options
author | Geoff Liu <g@geoffliu.me> | 2015-08-30 14:46:46 -0600 |
---|---|---|
committer | Geoff Liu <g@geoffliu.me> | 2015-08-30 14:46:46 -0600 |
commit | fc9ae44e4887500634bf3a87343d687b4d7d4e3c (patch) | |
tree | 44f5bb138e06711a02614b7cab94d6166b872a2a /c++.html.markdown | |
parent | a230d76307ecbc0f53c4b359cdb90628720f915e (diff) |
Now that we explained move semantics
Diffstat (limited to 'c++.html.markdown')
-rw-r--r-- | c++.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown index 74bd8913..fa80e6d5 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -751,7 +751,8 @@ pt2 = nullptr; // Sets pt2 to null. // '=' != '=' != '='! -// Calls Foo::Foo(const Foo&) or some variant copy constructor. +// Calls Foo::Foo(const Foo&) or some variant (see move semantics) copy +// constructor. Foo f2; Foo f1 = f2; |