]> granicus.if.org Git - clang/commitdiff
The default answer for isBoundable() should be false.
authorZhongxing Xu <xuzhongxing@gmail.com>
Mon, 29 Jun 2009 05:44:14 +0000 (05:44 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Mon, 29 Jun 2009 05:44:14 +0000 (05:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74418 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/MemRegion.h

index 65ac0b53027c8e1fbc851d0e6b431b4b2e9338c1..427c2db7c5caaa74aebc9322cecd0cb5def88ee4 100644 (file)
@@ -83,7 +83,7 @@ public:
   
   template<typename RegionTy> const RegionTy* getAs() const;
   
-  virtual bool isBoundable() const { return true; }
+  virtual bool isBoundable() const { return false; }
 
   static bool classof(const MemRegion*) { return true; }
 };