Passing false instead of 0; no functional change intended.
authorAaron Ballman <aaron@aaronballman.com>
Fri, 16 Aug 2013 13:34:39 +0000 (13:34 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Fri, 16 Aug 2013 13:34:39 +0000 (13:34 +0000)
llvm-svn: 188552

clang/include/clang/StaticAnalyzer/Core/CheckerManager.h

index b2411e6..6a67e41 100644 (file)
@@ -590,7 +590,7 @@ private:
       : StmtKind(stmtKind), IsPreVisit(isPreVisit) { }
 
     static CachedStmtCheckersKey getSentinel() {
-      return CachedStmtCheckersKey(~0U, 0);
+      return CachedStmtCheckersKey(~0U, false);
     }
     unsigned getHashValue() const {
       llvm::FoldingSetNodeID ID;