diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-04-28 03:17:56 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-04-28 03:17:56 +0000 |
commit | 7626f778a567767690b279420037b7f11f2e4748 (patch) | |
tree | 2a3c5799af5f585efc621a3ff4ec838b2009fd79 /libcxx/test/std/utilities/tuple | |
parent | fbe85ae12e03cc95f0ae34cce8357f9cb22f0157 (diff) | |
download | bcm5719-llvm-7626f778a567767690b279420037b7f11f2e4748.tar.gz bcm5719-llvm-7626f778a567767690b279420037b7f11f2e4748.zip |
Remove names of unreferenced parameters. Patch from STL@microsoft.com
llvm-svn: 267852
Diffstat (limited to 'libcxx/test/std/utilities/tuple')
-rw-r--r-- | libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple.pass.cpp b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple.pass.cpp index 0e556b1b6c8..26c3da7af05 100644 --- a/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple.pass.cpp +++ b/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple.pass.cpp @@ -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; } |