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
This commit is contained in:
Eric Fiselier 2017-10-17 16:06:42 +00:00
parent d93991fedd
commit 9fdd86763e

View File

@ -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