diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-25 22:07:26 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-25 22:07:26 +0000 |
commit | ef20c110ddd52fed129334e3b9b50e5237ddfe54 (patch) | |
tree | 3b52a0b5e34aeae090d46d57ebc443c11b8a47d3 /Analysis/GRConstants.cpp | |
parent | 2cd65c8c5a247c0a93d76a32f832b95389c2f6de (diff) |
Fixed 80 col. violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Analysis/GRConstants.cpp')
-rw-r--r-- | Analysis/GRConstants.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<uintptr_t>(VD) | IsDecl) {} ValueKey(Stmt* S, bool isBlkExpr = false) - : Raw(reinterpret_cast<uintptr_t>(S) | (isBlkExpr ? IsBlkExpr : IsSubExpr)){} + : Raw(reinterpret_cast<uintptr_t>(S) | isBlkExpr ? IsBlkExpr : IsSubExpr){} bool isSubExpr() const { return getKind() == IsSubExpr; } bool isDecl() const { return getKind() == IsDecl; } |