summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFaisal Vali <faisalv@yahoo.com>2013-11-12 03:56:08 +0000
committerFaisal Vali <faisalv@yahoo.com>2013-11-12 03:56:08 +0000
commit218e94b6b6a688c6c1ac0b8c3c06e3e39ae3e7eb (patch)
tree3c3d9ba33dc1bfcabada2e297a7011a045e2c0c2
parent8bc2bc71f6741ed867a9df33269e5fd59009e1ce (diff)
downloadbcm5719-llvm-218e94b6b6a688c6c1ac0b8c3c06e3e39ae3e7eb.tar.gz
bcm5719-llvm-218e94b6b6a688c6c1ac0b8c3c06e3e39ae3e7eb.zip
COSMETIC: Fix 80 column overflow in some comments introduced in r194188
no functionality change. llvm-svn: 194449
-rw-r--r--clang/lib/Sema/SemaExprCXX.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/lib/Sema/SemaExprCXX.cpp b/clang/lib/Sema/SemaExprCXX.cpp
index e27bfd80505..59a167a62c5 100644
--- a/clang/lib/Sema/SemaExprCXX.cpp
+++ b/clang/lib/Sema/SemaExprCXX.cpp
@@ -5958,9 +5958,9 @@ ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC,
CheckCompletedExpr(FullExpr.get(), CC, IsConstexpr);
- // At the end of this full expression (which could be a deeply nested lambda),
- // if there is a potential capture within the nested lambda, have the outer
- // capture-able lambda try and capture it.
+ // At the end of this full expression (which could be a deeply nested
+ // lambda), if there is a potential capture within the nested lambda,
+ // have the outer capture-able lambda try and capture it.
// Consider the following code:
// void f(int, int);
// void f(const int&, double);
@@ -5983,10 +5983,10 @@ ExprResult Sema::ActOnFinishFullExpr(Expr *FE, SourceLocation CC,
// };
// }
//
- // Here, we see +n, and then the full-expression 0; ends, so we don't capture n
- // (and instead remove it from our list of potential captures), and then the
- // full-expression +n + ({ 0; }); ends, but it's too late for us to see that
- // we need to capture n after all.
+ // Here, we see +n, and then the full-expression 0; ends, so we don't
+ // capture n (and instead remove it from our list of potential captures),
+ // and then the full-expression +n + ({ 0; }); ends, but it's too late
+ // for us to see that we need to capture n after all.
LambdaScopeInfo *const CurrentLSI = getCurLambda();
// FIXME: PR 17877 showed that getCurLambda() can return a valid pointer
OpenPOWER on IntegriCloud