summaryrefslogtreecommitdiffstats
path: root/llvm/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
commitb61c63ecd00a8f5bf124314cf3ef651a3aed6995 (patch)
tree485d8e258624bcb0deb1bd06e8a82eb4425a82a9 /llvm/lib/Support/SmallPtrSet.cpp
parent204707727204165dd3424e61d31d9c10a2338a9e (diff)
downloadbcm5719-llvm-b61c63ecd00a8f5bf124314cf3ef651a3aed6995.tar.gz
bcm5719-llvm-b61c63ecd00a8f5bf124314cf3ef651a3aed6995.zip
Properly use const qualifiers
llvm-svn: 41111
Diffstat (limited to 'llvm/lib/Support/SmallPtrSet.cpp')
-rw-r--r--llvm/lib/Support/SmallPtrSet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/SmallPtrSet.cpp b/llvm/lib/Support/SmallPtrSet.cpp
index ba00d903658..eac2909a838 100644
--- a/llvm/lib/Support/SmallPtrSet.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud