mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-31 15:53:42 +00:00
Properly use const qualifiers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41111 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
77f8b72af2
commit
ebf0303810
@ -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,
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user