]> granicus.if.org Git - clang/commitdiff
Fixed 80 col. violation.
authorTed Kremenek <kremenek@apple.com>
Fri, 25 Jan 2008 22:07:26 +0000 (22:07 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 25 Jan 2008 22:07:26 +0000 (22:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46370 91177308-0d34-0410-b5e6-96231b3b80d8

Analysis/GRConstants.cpp

index 27f7a639a276e56354b8f5c66276736064381966..9133ca2e19a483be481141fed63d108a347eb691 100644 (file)
@@ -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; }