From 729bd28f62d83c9681702264a79c4ab03c7c11ec Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Tue, 13 Nov 2007 23:04:06 +0000 Subject: [PATCH] Fixed a strange construct. Please review. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44082 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/SparseBitVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ADT/SparseBitVector.h b/include/llvm/ADT/SparseBitVector.h index 4e5e781eb86..fe63f9f2471 100644 --- a/include/llvm/ADT/SparseBitVector.h +++ b/include/llvm/ADT/SparseBitVector.h @@ -800,7 +800,7 @@ public: } iterator end() const { - return iterator(this, ~0); + return iterator(this, true); } // Get a hash value for this bitmap. -- 2.34.1