From 39d60a514f39997932c5438075b3409338bf42de Mon Sep 17 00:00:00 2001 From: bolero-MURAKAMI Date: Thu, 31 Oct 2013 13:25:42 +0900 Subject: [PATCH] fix warning: unused parameter --- sprout/tuple/tuple/tuple_decl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sprout/tuple/tuple/tuple_decl.hpp b/sprout/tuple/tuple/tuple_decl.hpp index 90ce5624..5c9396e4 100644 --- a/sprout/tuple/tuple/tuple_decl.hpp +++ b/sprout/tuple/tuple/tuple_decl.hpp @@ -124,7 +124,7 @@ namespace sprout { SPROUT_CXX14_CONSTEXPR tuple_impl& operator=(tuple_impl const&) SPROUT_NOEXCEPT { return *this; } - SPROUT_CXX14_CONSTEXPR tuple_impl& operator=(tuple_impl&& t) SPROUT_NOEXCEPT { + SPROUT_CXX14_CONSTEXPR tuple_impl& operator=(tuple_impl&&) SPROUT_NOEXCEPT { return *this; } template