diff options
author | Galina Kistanova <gkistanova@gmail.com> | 2017-06-03 06:31:42 +0000 |
---|---|---|
committer | Galina Kistanova <gkistanova@gmail.com> | 2017-06-03 06:31:42 +0000 |
commit | f87496d1071b1d6094e0e96d60872e5bbbebc914 (patch) | |
tree | d3be590135d0a62135c984c36c4953f278420f9a /clang/lib/AST/NestedNameSpecifier.cpp | |
parent | 0872d6c275db774da4baf7cc96b3da6985384a69 (diff) | |
download | bcm5719-llvm-f87496d1071b1d6094e0e96d60872e5bbbebc914.tar.gz bcm5719-llvm-f87496d1071b1d6094e0e96d60872e5bbbebc914.zip |
Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC.
llvm-svn: 304650
Diffstat (limited to 'clang/lib/AST/NestedNameSpecifier.cpp')
-rw-r--r-- | clang/lib/AST/NestedNameSpecifier.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/AST/NestedNameSpecifier.cpp b/clang/lib/AST/NestedNameSpecifier.cpp index 514c7c9f5b3..e2e0dbeec0d 100644 --- a/clang/lib/AST/NestedNameSpecifier.cpp +++ b/clang/lib/AST/NestedNameSpecifier.cpp @@ -290,6 +290,7 @@ NestedNameSpecifier::print(raw_ostream &OS, case TypeSpecWithTemplate: OS << "template "; // Fall through to print the type. + LLVM_FALLTHROUGH; case TypeSpec: { const Type *T = getAsType(); |