]> granicus.if.org Git - clang/commitdiff
80-col fixes.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 28 Oct 2008 19:12:58 +0000 (19:12 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 28 Oct 2008 19:12:58 +0000 (19:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58341 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Expr.h

index 7acd70411c33ded0be6e0c4138f452a0131e896e..20f51761dc7fc85567540add1a967af060b21eea 100644 (file)
@@ -46,7 +46,8 @@ protected:
     // 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 @@ class ExplicitCastExpr : public CastExpr {
   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