diff options
Diffstat (limited to 'clang/docs/LanguageExtensions.html')
-rw-r--r-- | clang/docs/LanguageExtensions.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/docs/LanguageExtensions.html b/clang/docs/LanguageExtensions.html index 79fd3bcbcd9..21ac6277122 100644 --- a/clang/docs/LanguageExtensions.html +++ b/clang/docs/LanguageExtensions.html @@ -1582,7 +1582,8 @@ path between it and the next switch label.</p> <pre> // compile with -Wimplicit-fallthrough switch (n) { -case 33: +case 22: +case 33: // no warning: no statements between case labels f(); case 44: // warning: unannotated fall-through g(); |