fix warning: unused parameter

This commit is contained in:
bolero-MURAKAMI 2013-10-31 13:25:42 +09:00
parent 2232778731
commit 39d60a514f

View file

@ -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<typename... UTypes>