forked from OSchip/llvm-project
Workaround new -Wshadow warning introduced by r293599
llvm-svn: 293619
This commit is contained in:
parent
f201929010
commit
143b58577d
|
@ -44,7 +44,7 @@ struct poca_alloc {
|
|||
|
||||
alloc_imp<T> *imp;
|
||||
|
||||
poca_alloc(alloc_imp<T> *imp) : imp (imp) {}
|
||||
poca_alloc(alloc_imp<T> *ximp) : imp (ximp) {}
|
||||
|
||||
template <class U>
|
||||
poca_alloc(const poca_alloc<U>& other) : imp(other.imp) {}
|
||||
|
|
Loading…
Reference in New Issue