aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-07-10 22:57:49 +0000
committerBill Wendling <isanbard@gmail.com>2008-07-10 22:57:49 +0000
commitc764d6fe0ef064717d83b0378a04556a31d877bf (patch)
tree587688ecb3060dd85b676d0a893f6c300774f91f /include/llvm/Support
parentc69812ea8eb7111ebccd78b205ad400b83e7c676 (diff)
downloadexternal_llvm-c764d6fe0ef064717d83b0378a04556a31d877bf.zip
external_llvm-c764d6fe0ef064717d83b0378a04556a31d877bf.tar.gz
external_llvm-c764d6fe0ef064717d83b0378a04556a31d877bf.tar.bz2
Pull r53428 from Gaz into mainline:
Remove warnings about unused/shadowed variables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53430 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/Recycler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Recycler.h b/include/llvm/Support/Recycler.h
index 8d4dc4c..4750a6d 100644
--- a/include/llvm/Support/Recycler.h
+++ b/include/llvm/Support/Recycler.h
@@ -79,7 +79,7 @@ public:
}
template<class SubClass, class AllocatorType>
- void Deallocate(AllocatorType &Allocator, SubClass* Element) {
+ void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
NodeTy *N = NodeTy::getNode(Element);
assert(N->getPrev() == 0);
assert(N->getNext() == 0);