From Jason Turner

[stmt.cont]

Diff to HTML by rtfpessoa

tmp/tmpuqomj3ww/{from.md → to.md} RENAMED
@@ -1,11 +1,12 @@
1
  ### The `continue` statement <a id="stmt.cont">[[stmt.cont]]</a>
2
 
3
- The `continue` statement shall occur only in an *iteration-statement*
4
- and causes control to pass to the loop-continuation portion of the
5
- smallest enclosing *iteration-statement*, that is, to the end of the
6
- loop. More precisely, in each of the statements
 
7
 
8
  ``` cpp
9
  while (foo) {
10
  {
11
  // ...
 
1
  ### The `continue` statement <a id="stmt.cont">[[stmt.cont]]</a>
2
 
3
+ A `continue` statement shall be enclosed by [[stmt.pre]] an
4
+ *iteration-statement* [[stmt.iter]]. The `continue` statement causes
5
+ control to pass to the loop-continuation portion of the smallest such
6
+ enclosing statement, that is, to the end of the loop. More precisely, in
7
+ each of the statements
8
 
9
  ``` cpp
10
  while (foo) {
11
  {
12
  // ...