diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-02-22 07:49:13 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2018-02-22 07:49:13 +0000 |
commit | 971514dd3e28426617b1a38600889299649a7c72 (patch) | |
tree | 51b04e83337166e0922083e86b5792a00d1df43c /clang | |
parent | 7f9f92f8b68328a5d707a882674b846192f8f854 (diff) | |
download | bcm5719-llvm-971514dd3e28426617b1a38600889299649a7c72.tar.gz bcm5719-llvm-971514dd3e28426617b1a38600889299649a7c72.zip |
[NFC] fix trivial typos in comments
"a a"->"a"
llvm-svn: 325753
Diffstat (limited to 'clang')
-rw-r--r-- | clang/include/clang/Sema/ScopeInfo.h | 2 | ||||
-rw-r--r-- | clang/test/SemaCXX/ms-uuid.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/Sema/ScopeInfo.h b/clang/include/clang/Sema/ScopeInfo.h index 5f96f595631..eedc5013b8c 100644 --- a/clang/include/clang/Sema/ScopeInfo.h +++ b/clang/include/clang/Sema/ScopeInfo.h @@ -799,7 +799,7 @@ public: /// Potentially capturable variables of a nested lambda that might need /// to be captured by the lambda are housed here. /// This is specifically useful for generic lambdas or - /// lambdas within a a potentially evaluated-if-used context. + /// lambdas within a potentially evaluated-if-used context. /// If an enclosing variable is named in an expression of a lambda nested /// within a generic lambda, we don't always know know whether the variable /// will truly be odr-used (i.e. need to be captured) by that nested lambda, diff --git a/clang/test/SemaCXX/ms-uuid.cpp b/clang/test/SemaCXX/ms-uuid.cpp index e29dda878e6..c26ea688e37 100644 --- a/clang/test/SemaCXX/ms-uuid.cpp +++ b/clang/test/SemaCXX/ms-uuid.cpp @@ -23,7 +23,7 @@ namespace { // clang-cl implements the following simpler (but largely compatible) behavior // instead: // * [] and __declspec uuids have the same behavior. -// * If there are several uuids on a a class (no matter if on the same decl or +// * If there are several uuids on a class (no matter if on the same decl or // on several decls), it is an error if they don't match. // * Having several uuids that match is ok. |