summaryrefslogtreecommitdiff
path: root/lib/Support/SmallPtrSet.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2007-08-15 21:12:30 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2007-08-15 21:12:30 +0000
commitebf03038109c2af39d0db14ea9058c10e02e9eae (patch)
tree8b88d3854994a4c6236ca6ec06a6c694a1761388 /lib/Support/SmallPtrSet.cpp
parent77f8b72af282664c82e9984a49602a813aae18a0 (diff)
downloadllvm-ebf03038109c2af39d0db14ea9058c10e02e9eae.tar.gz
llvm-ebf03038109c2af39d0db14ea9058c10e02e9eae.tar.bz2
llvm-ebf03038109c2af39d0db14ea9058c10e02e9eae.tar.xz
Properly use const qualifiers
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/SmallPtrSet.cpp')
-rw-r--r--lib/Support/SmallPtrSet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/SmallPtrSet.cpp b/lib/Support/SmallPtrSet.cpp
index ba00d90365..eac2909a83 100644
--- a/lib/Support/SmallPtrSet.cpp
+++ b/lib/Support/SmallPtrSet.cpp
@@ -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;