Properly use const qualifiers
authorAnton Korobeynikov <asl@math.spbu.ru>
Wed, 15 Aug 2007 21:12:30 +0000 (21:12 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Wed, 15 Aug 2007 21:12:30 +0000 (21:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41111 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/SmallPtrSet.h
lib/Support/SmallPtrSet.cpp

index 2ff7de448fd2859bcf3730b22e7f0a436cb1064d..c326c7ffd62477795f9b1d189e9ae3803817c329 100644 (file)
@@ -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,
index ba00d903658ffe83c11fcd1970f91709126c3ecc..eac2909a8384ad44b6760f0806f6f1eef81eb8af 100644 (file)
@@ -69,7 +69,7 @@ bool SmallPtrSetImpl::insert(const void * Ptr) {
   return true;
 }
 
-bool SmallPtrSetImpl::erase(void * const Ptr) {
+bool SmallPtrSetImpl::erase(const void * Ptr) {
   if (isSmall()) {
     // Check to see if it is in the set.
     for (const void **APtr = SmallArray, **E = SmallArray+NumElements;