Skip to content

Commit

Permalink
Fix runon sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
llvm-beanz committed Sep 5, 2024
1 parent 3313c24 commit 613d13c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions specs/language/expressions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,11 @@
undefined behavior to not explicitly initialize an \textit{output parameter}
before returning from the function in which it is defined. The cxvalue created
from an argument to an \textit{input/output parameter} is initialized through
copy-initialization from the lvalue argument expression, overload resolution may
occur on argument initialization as if the expression \texttt{T Param = Arg}
were evaluated. In both cases, the cxvalue shall have the type of the parameter
and the argument can be converted to that type through implicit or explicit
conversion.
copy-initialization from the lvalue argument expression. Overload resolution
shall occur on argument initialization as if the expression \texttt{T Param =
Arg} were evaluated. In both cases, the cxvalue shall have the type of the
parameter and the argument can be converted to that type through implicit or
explicit conversion.

\p If an argument to an \textit{output} or \textit{input/output parameter} is a
constant sized array, the array is copied to a temporary cxvalue following the
Expand Down

0 comments on commit 613d13c

Please sign in to comment.