From ef20c110ddd52fed129334e3b9b50e5237ddfe54 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Fri, 25 Jan 2008 22:07:26 +0000 Subject: [PATCH] Fixed 80 col. violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46370 91177308-0d34-0410-b5e6-96231b3b80d8 --- Analysis/GRConstants.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Analysis/GRConstants.cpp b/Analysis/GRConstants.cpp index 27f7a639a2..9133ca2e19 100644 --- a/Analysis/GRConstants.cpp +++ b/Analysis/GRConstants.cpp @@ -57,7 +57,7 @@ public: : Raw(reinterpret_cast(VD) | IsDecl) {} ValueKey(Stmt* S, bool isBlkExpr = false) - : Raw(reinterpret_cast(S) | (isBlkExpr ? IsBlkExpr : IsSubExpr)){} + : Raw(reinterpret_cast(S) | isBlkExpr ? IsBlkExpr : IsSubExpr){} bool isSubExpr() const { return getKind() == IsSubExpr; } bool isDecl() const { return getKind() == IsDecl; } -- 2.50.1