Skip to content

Commit

Permalink
Add move constructors to the invisible reference rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
jicama committed Mar 29, 2017
1 parent 7a5437c commit 05fc233
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions abi.html
Original file line number Diff line number Diff line change
Expand Up @@ -2667,8 +2667,9 @@ <h4><a href="#value-parameter"> 3.1.1 Value Parameters </a></h4>
<ol type="1">
<li>
<p>
In the special case where the parameter type has a non-trivial copy
constructor or destructor, the caller must allocate space for a
In the special case where the parameter type has a non-trivial copy or move
constructor or destructor, or all copy and move constructors are deleted,
the caller must allocate space for a
temporary copy, and pass the resulting copy by reference (below).
Specifically,
</p>
Expand Down

0 comments on commit 05fc233

Please sign in to comment.