summaryrefslogtreecommitdiffhomepage
path: root/c++.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <g@geoffliu.me>2015-08-30 14:46:46 -0600
committerGeoff Liu <g@geoffliu.me>2015-08-30 14:46:46 -0600
commitfc9ae44e4887500634bf3a87343d687b4d7d4e3c (patch)
tree44f5bb138e06711a02614b7cab94d6166b872a2a /c++.html.markdown
parenta230d76307ecbc0f53c4b359cdb90628720f915e (diff)
Now that we explained move semantics
Diffstat (limited to 'c++.html.markdown')
-rw-r--r--c++.html.markdown3
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;