From cb14d02f6dfef73054f8eb5abce5bccf9e66d54d Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Tue, 31 Jan 2017 12:37:48 +0000 Subject: [PATCH] Workaround new -Wshadow warning introduced by r293599 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@293619 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp b/test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp index 092e9f5cb..2bfb931e5 100644 --- a/test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp +++ b/test/std/strings/basic.string/string.cons/copy_alloc.pass.cpp @@ -44,7 +44,7 @@ struct poca_alloc { alloc_imp *imp; - poca_alloc(alloc_imp *imp) : imp (imp) {} + poca_alloc(alloc_imp *ximp) : imp (ximp) {} template poca_alloc(const poca_alloc& other) : imp(other.imp) {}