Workaround new -Wshadow warning introduced by r293599

llvm-svn: 293619
This commit is contained in:
Alex Lorenz 2017-01-31 12:37:48 +00:00
parent f201929010
commit 143b58577d
1 changed files with 1 additions and 1 deletions

View File

@ -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) {}