Remove names of unreferenced parameters. Patch from STL@microsoft.com
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@267852 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
template <class Tuple>
|
||||
void
|
||||
test0(const Tuple& t)
|
||||
test0(const Tuple&)
|
||||
{
|
||||
static_assert(std::tuple_size<Tuple>::value == 0, "");
|
||||
}
|
||||
@@ -57,7 +57,7 @@ test2a(const Tuple& t)
|
||||
#if _LIBCPP_STD_VER > 11
|
||||
template <class Tuple>
|
||||
constexpr int
|
||||
test3(const Tuple& t)
|
||||
test3(const Tuple&)
|
||||
{
|
||||
return std::tuple_size<Tuple>::value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user