mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2024-11-30 15:20:33 +00:00
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:
parent
d93991fedd
commit
9fdd86763e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user