diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-08-15 21:12:30 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-08-15 21:12:30 +0000 |
commit | 68363b047030f39eb4fd01930038a55d2f5406a3 (patch) | |
tree | 8b88d3854994a4c6236ca6ec06a6c694a1761388 /include/llvm/ADT/SmallPtrSet.h | |
parent | cb810d3ba26ed475c3b995fced7cd342fb649f8e (diff) | |
download | external_llvm-68363b047030f39eb4fd01930038a55d2f5406a3.zip external_llvm-68363b047030f39eb4fd01930038a55d2f5406a3.tar.gz external_llvm-68363b047030f39eb4fd01930038a55d2f5406a3.tar.bz2 |
Properly use const qualifiers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/SmallPtrSet.h')
-rw-r--r-- | include/llvm/ADT/SmallPtrSet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/ADT/SmallPtrSet.h b/include/llvm/ADT/SmallPtrSet.h index 2ff7de4..c326c7f 100644 --- a/include/llvm/ADT/SmallPtrSet.h +++ b/include/llvm/ADT/SmallPtrSet.h @@ -103,9 +103,9 @@ public: /// erase - If the set contains the specified pointer, remove it and return /// true, otherwise return false. - bool erase(void * const Ptr); + bool erase(const void * Ptr); - bool count(void * const Ptr) const { + bool count(const void * Ptr) const { if (isSmall()) { // Linear search for the item. for (const void *const *APtr = SmallArray, |