]> granicus.if.org Git - clang/commitdiff
TypedRegion::isBoundable() should return true by default. Since there is no TypedVie...
authorTed Kremenek <kremenek@apple.com>
Tue, 17 Aug 2010 23:51:30 +0000 (23:51 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 17 Aug 2010 23:51:30 +0000 (23:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111329 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Checker/PathSensitive/MemRegion.h

index 441c637d0755fee645e51958c2644a08b1d897c3..96f906af28e14716e590a23a2df20cce7b33778e 100644 (file)
@@ -365,9 +365,7 @@ public:
     return getLocationType().getDesugaredType();
   }
 
-  bool isBoundable() const {
-    return !getValueType().isNull();
-  }
+  bool isBoundable() const { return true; }
 
   static bool classof(const MemRegion* R) {
     unsigned k = R->getKind();