From Jason Turner

[basic.stc.auto]

Diff to HTML by rtfpessoa

tmp/tmpkbpzagpe/{from.md → to.md} RENAMED
@@ -1,10 +1,11 @@
1
  #### Automatic storage duration <a id="basic.stc.auto">[[basic.stc.auto]]</a>
2
 
3
- Block-scope variables not explicitly declared `static`, `thread_local`,
4
- or `extern` have *automatic storage duration*. The storage for these
5
- entities lasts until the block in which they are created exits.
 
6
 
7
  [*Note 1*: These variables are initialized and destroyed as described
8
  in  [[stmt.dcl]]. — *end note*]
9
 
10
  If a variable with automatic storage duration has initialization or a
 
1
  #### Automatic storage duration <a id="basic.stc.auto">[[basic.stc.auto]]</a>
2
 
3
+ Variables that belong to a block or parameter scope and are not
4
+ explicitly declared `static`, `thread_local`, or `extern` have
5
+ *automatic storage duration*. The storage for these entities lasts until
6
+ the block in which they are created exits.
7
 
8
  [*Note 1*: These variables are initialized and destroyed as described
9
  in  [[stmt.dcl]]. — *end note*]
10
 
11
  If a variable with automatic storage duration has initialization or a