Skip to content

Commit

Permalink
Merge pull request itanium-cxx-abi#17 from jicama/master
Browse files Browse the repository at this point in the history
Add move constructors to the invisible reference rule.
  • Loading branch information
rjmccall authored Mar 30, 2017
2 parents 7a5437c + 05fc233 commit 7099637
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 7099637

Please sign in to comment.