r194449 - COSMETIC: Fix 80 column overflow in some comments introduced in r194188

Faisal Vali faisalv at yahoo.com
Mon Nov 11 19:56:08 PST 2013


Author: faisalv
Date: Mon Nov 11 21:56:08 2013
New Revision: 194449

URL: http://llvm.org/viewvc/llvm-project?rev=194449&view=rev
Log:
COSMETIC: Fix 80 column overflow in some comments introduced in r194188

no functionality change.

Modified:
    cfe/trunk/lib/Sema/SemaExprCXX.cpp

Modified: cfe/trunk/lib/Sema/SemaExprCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExprCXX.cpp?rev=194449&r1=194448&r2=194449&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExprCXX.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExprCXX.cpp Mon Nov 11 21:56:08 2013
@@ -5958,9 +5958,9 @@ ExprResult Sema::ActOnFinishFullExpr(Exp
 
   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(Exp
   //     };
   //   }
   // 
-  //   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 





More information about the cfe-commits mailing list