[cfe-commits] r58341 - /cfe/trunk/include/clang/AST/Expr.h

Daniel Dunbar daniel at zuster.org
Tue Oct 28 12:12:59 PDT 2008


Author: ddunbar
Date: Tue Oct 28 14:12:58 2008
New Revision: 58341

URL: http://llvm.org/viewvc/llvm-project?rev=58341&view=rev
Log:
80-col fixes.

Modified:
    cfe/trunk/include/clang/AST/Expr.h

Modified: cfe/trunk/include/clang/AST/Expr.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Expr.h?rev=58341&r1=58340&r2=58341&view=diff

==============================================================================
--- cfe/trunk/include/clang/AST/Expr.h (original)
+++ cfe/trunk/include/clang/AST/Expr.h Tue Oct 28 14:12:58 2008
@@ -46,7 +46,8 @@
     // type. Additionally, inspect Expr::isLvalue to determine whether
     // an expression that is adjusted in this manner should be
     // considered an lvalue.
-    assert((T.isNull() || !T->isReferenceType()) && "Expressions can't have reference type");
+    assert((T.isNull() || !T->isReferenceType()) && 
+           "Expressions can't have reference type");
   }
 public:  
   QualType getType() const { return TR; }
@@ -856,8 +857,8 @@
   QualType TypeAsWritten;
 
 protected:
-  ExplicitCastExpr(StmtClass SC, QualType exprTy, Expr *op, QualType writtenTy) : 
-    CastExpr(SC, exprTy, op), TypeAsWritten(writtenTy) {}
+  ExplicitCastExpr(StmtClass SC, QualType exprTy, Expr *op, QualType writtenTy) 
+    : CastExpr(SC, exprTy, op), TypeAsWritten(writtenTy) {}
 
 public:
   /// getTypeAsWritten - Returns the type that this expression is





More information about the cfe-commits mailing list