From 46fcbb4da4f2c5536c7bac97fe0f905e8ef885bb Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Sat, 3 Dec 2016 02:26:28 +0000 Subject: Work around more -Wshadow warnings llvm-svn: 288573 --- .../std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/test/std/algorithms/alg.modifying.operations') diff --git a/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp b/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp index b56d31b9d0d..f39436048ae 100644 --- a/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp +++ b/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/fill_n.pass.cpp @@ -81,7 +81,7 @@ test_int_array_struct_source() struct test1 { test1() : c(0) { } - test1(char c) : c(c + 1) { } + test1(char xc) : c(xc + 1) { } char c; }; -- cgit v1.2.3