diff --git a/include/boost/fusion/tuple/tuple.hpp b/include/boost/fusion/tuple/tuple.hpp index 4125f42d..88e28c8e 100644 --- a/include/boost/fusion/tuple/tuple.hpp +++ b/include/boost/fusion/tuple/tuple.hpp @@ -40,22 +40,20 @@ namespace boost { namespace fusion #include template - tuple& - operator=(T const& rhs) + tuple& operator=(T const& rhs) { base_type::operator=(rhs); return *this; } - tuple& - operator=(tuple const& rhs) + tuple& operator=(tuple const& rhs) { base_type::operator=(rhs); return *this; } template - operator=(std::pair const& rhs) + tuple& operator=(std::pair const& rhs) { base_type::operator=(rhs); return *this;