summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-10-17 16:06:42 +0000
committerEric Fiselier <eric@efcs.ca>2017-10-17 16:06:42 +0000
commit9fdd86763e5d6d66243e098a8e2c01052867c5c9 (patch)
tree51f5dd0b79307d3785ade3a9f623df3d5e31a9f7
parentd93991feddfdc485f708415f4fa93f0f735d0af2 (diff)
fix shadowing warnings in new tests, try 2
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@316009 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/support/emplace_constructible.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/support/emplace_constructible.h b/test/support/emplace_constructible.h
index 54fa6879d..f0d11ba76 100644
--- a/test/support/emplace_constructible.h
+++ b/test/support/emplace_constructible.h
@@ -47,8 +47,8 @@ struct EmplaceConstructibleMoveableAndAssignable {
int copied = 0;
int assigned = 0;
T value;
- explicit EmplaceConstructibleMoveableAndAssignable(T value) noexcept
- : value(value) {}
+ explicit EmplaceConstructibleMoveableAndAssignable(T xvalue) noexcept
+ : value(xvalue) {}
EmplaceConstructibleMoveableAndAssignable(
EmplaceConstructibleMoveableAndAssignable&& Other) noexcept