summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/SparseBitVector.h
diff options
context:
space:
mode:
authorHartmut Kaiser <hartmut.kaiser@gmail.com>2007-11-13 23:04:06 +0000
committerHartmut Kaiser <hartmut.kaiser@gmail.com>2007-11-13 23:04:06 +0000
commit729bd28f62d83c9681702264a79c4ab03c7c11ec (patch)
tree2ed506a2b4b353aaa5ccbe522c25da1c7c81bb7e /include/llvm/ADT/SparseBitVector.h
parentea966dda1b29a519290df1c98af44f5a131e3ff0 (diff)
downloadllvm-729bd28f62d83c9681702264a79c4ab03c7c11ec.tar.gz
llvm-729bd28f62d83c9681702264a79c4ab03c7c11ec.tar.bz2
llvm-729bd28f62d83c9681702264a79c4ab03c7c11ec.tar.xz
Fixed a strange construct. Please review.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44082 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/SparseBitVector.h')
-rw-r--r--include/llvm/ADT/SparseBitVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/SparseBitVector.h b/include/llvm/ADT/SparseBitVector.h
index 4e5e781eb8..fe63f9f247 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.