fix shadowing warnings in new tests, try 2

llvm-svn: 316009
This commit is contained in:
Eric Fiselier 2017-10-17 16:06:42 +00:00
parent 6d172f2d72
commit ffcc7c6c38
1 changed files with 2 additions and 2 deletions

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