From: Ted Kremenek Date: Fri, 25 Jan 2008 22:07:26 +0000 (+0000) Subject: Fixed 80 col. violation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef20c110ddd52fed129334e3b9b50e5237ddfe54;p=clang Fixed 80 col. violation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46370 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }