From 9450d5e26248ecd9d11aaef773dc0a83d9cee88e Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Wed, 26 Oct 2016 17:22:25 +0000 Subject: Silence unused parameter warnings in archetypes.hpp Reviewed at: https://reviews.llvm.org/D25958 llvm-svn: 285213 --- libcxx/test/support/archetypes.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libcxx/test/support') diff --git a/libcxx/test/support/archetypes.hpp b/libcxx/test/support/archetypes.hpp index 37c49bd95f9..2538c2590d8 100644 --- a/libcxx/test/support/archetypes.hpp +++ b/libcxx/test/support/archetypes.hpp @@ -68,12 +68,12 @@ struct TestBase { ++alive; ++constructed; ++value_constructed; } template ::type = true> - explicit TestBase(std::initializer_list& il, int y = 0) noexcept + explicit TestBase(std::initializer_list& il, int = 0) noexcept : value(il.size()) { ++alive; ++constructed; ++value_constructed; } template ::type = true> - explicit TestBase(std::initializer_list& il, int y = 0) noexcept : value(il.size()) { + explicit TestBase(std::initializer_list& il, int = 0) noexcept : value(il.size()) { ++alive; ++constructed; ++value_constructed; } TestBase& operator=(int xvalue) noexcept { @@ -135,9 +135,9 @@ struct ValueBase { template ::type = true> constexpr ValueBase(int, int y) : value(y) {} template ::type = true> - explicit constexpr ValueBase(std::initializer_list& il, int y = 0) : value(il.size()) {} + explicit constexpr ValueBase(std::initializer_list& il, int = 0) : value(il.size()) {} template ::type = true> - constexpr ValueBase(std::initializer_list& il, int y = 0) : value(il.size()) {} + constexpr ValueBase(std::initializer_list& il, int = 0) : value(il.size()) {} TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { value = xvalue; return *this; @@ -193,9 +193,9 @@ struct TrivialValueBase { template ::type = true> constexpr TrivialValueBase(int, int y) : value(y) {} template ::type = true> - explicit constexpr TrivialValueBase(std::initializer_list& il, int y = 0) : value(il.size()) {} + explicit constexpr TrivialValueBase(std::initializer_list& il, int = 0) : value(il.size()) {} template ::type = true> - constexpr TrivialValueBase(std::initializer_list& il, int y = 0) : value(il.size()) {}; + constexpr TrivialValueBase(std::initializer_list& il, int = 0) : value(il.size()) {}; int value; protected: constexpr TrivialValueBase() noexcept : value(0) {} -- cgit v1.2.3