Skip to content

Commit 75cdc07

Browse files
[stmt.return] Replace the uses of "local variable"
... with "block variable with automatic storage duration"
1 parent 7a28e06 commit 75cdc07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/statements.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -947,11 +947,11 @@
947947
The copy-initialization of the result of the call is sequenced before the
948948
destruction of temporaries at the end of the full-expression established
949949
by the operand of the \tcode{return} statement, which, in turn, is sequenced
950-
before the destruction of local variables\iref{stmt.jump} of the block
950+
before the destruction of block variables with automatic storage duration\iref{stmt.jump} of the block
951951
enclosing the \tcode{return} statement.
952952
\begin{note}
953953
These operations
954-
are sequenced before the destruction of local variables
954+
are sequenced before the destruction of block variables with automatic storage duration
955955
in each remaining enclosing block of the function\iref{stmt.dcl},
956956
which, in turn,
957957
is sequenced before the evaluation of

0 commit comments

Comments
 (0)