commit | 9d8c9d345a41b782943fd84fe20e9ebd3c568c5d | [log] [tgz] |
---|---|---|
author | Alexander Kornienko <alexfh@google.com> | Mon Sep 17 21:45:21 2012 +0000 |
committer | Alexander Kornienko <alexfh@google.com> | Mon Sep 17 21:45:21 2012 +0000 |
tree | e355e3cf5a0cf2bfb5f18c67840ed2a4eb674c37 | |
parent | 6defd9f31eec51278d056f1bff885018e2321373 [diff] [blame] |
Added an example of an empty case label to avoid confusion. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164055 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html index 79fd3bc..21ac627 100644 --- a/docs/LanguageExtensions.html +++ b/docs/LanguageExtensions.html
@@ -1582,7 +1582,8 @@ <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();