mgrang added inline comments.

================
Comment at: include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h:407
 class ExplodedNodeSet {
-  typedef llvm::SmallPtrSet<ExplodedNode*,5> ImplTy;
+  typedef llvm::SmallSetVector<ExplodedNode*, 4> ImplTy;
   ImplTy Impl;
----------------
SmallSetVector size has to be a power of 2. I was split between 4 and 8. I 
chose 4 as it's closer to 5 :)


https://reviews.llvm.org/D37400



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to