diff options
author | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-05 05:37:45 +0000 |
---|---|---|
committer | Hiroshi Inoue <inouehrs@jp.ibm.com> | 2017-07-05 05:37:45 +0000 |
commit | 0c2734f8de45da5df4fcbb3993682be81f5dbb62 (patch) | |
tree | 52695180de4a9598c791416b63d1cba27a1fb408 /clang/lib/Sema/SemaLambda.cpp | |
parent | 5fd4ea36fd53f8beca2056f98c2683ae4ceb5e0d (diff) | |
download | bcm5719-llvm-0c2734f8de45da5df4fcbb3993682be81f5dbb62.tar.gz bcm5719-llvm-0c2734f8de45da5df4fcbb3993682be81f5dbb62.zip |
fix trivial typos in comments; NFC
llvm-svn: 307123
Diffstat (limited to 'clang/lib/Sema/SemaLambda.cpp')
-rw-r--r-- | clang/lib/Sema/SemaLambda.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaLambda.cpp b/clang/lib/Sema/SemaLambda.cpp index d6b70610d46..46f2ba37600 100644 --- a/clang/lib/Sema/SemaLambda.cpp +++ b/clang/lib/Sema/SemaLambda.cpp @@ -1595,7 +1595,7 @@ ExprResult Sema::BuildLambdaExpr(SourceLocation StartLoc, SourceLocation EndLoc, ContainsUnexpandedParameterPack); // If the lambda expression's call operator is not explicitly marked constexpr // and we are not in a dependent context, analyze the call operator to infer - // its constexpr-ness, supressing diagnostics while doing so. + // its constexpr-ness, suppressing diagnostics while doing so. if (getLangOpts().CPlusPlus1z && !CallOperator->isInvalidDecl() && !CallOperator->isConstexpr() && !isa<CoroutineBodyStmt>(CallOperator->getBody()) && |