diff options
author | Paul Robinson <paul.robinson@sony.com> | 2017-12-26 18:01:19 +0000 |
---|---|---|
committer | Paul Robinson <paul.robinson@sony.com> | 2017-12-26 18:01:19 +0000 |
commit | d1c3dd89a68ee0074e8dacf73e358867d592ddfd (patch) | |
tree | 730c0b7571858104b0d01c866c88e61202eb3153 /clang/lib/AST/Decl.cpp | |
parent | 9a39979dd2d430a6c964716582abeac597d6b2a3 (diff) | |
download | bcm5719-llvm-d1c3dd89a68ee0074e8dacf73e358867d592ddfd.tar.gz bcm5719-llvm-d1c3dd89a68ee0074e8dacf73e358867d592ddfd.zip |
Fix comment typo in r321312.
Post-commit review by Kim Grasman!
llvm-svn: 321457
Diffstat (limited to 'clang/lib/AST/Decl.cpp')
-rw-r--r-- | clang/lib/AST/Decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp index 629037b1755..4c1d591b41e 100644 --- a/clang/lib/AST/Decl.cpp +++ b/clang/lib/AST/Decl.cpp @@ -1550,7 +1550,7 @@ void NamedDecl::printQualifiedName(raw_ostream &OS, // the enum-specifier. Each scoped enumerator is declared in the // scope of the enumeration. // For the case of unscoped enumerator, do not include in the qualified - // name any information about its enum enclosing scope, as is visibility + // name any information about its enum enclosing scope, as its visibility // is global. if (ED->isScoped()) OS << *ED; |