From 814c40a0933149a48cd16cb1c5bbac0470bea330 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Wed, 20 Aug 2008 12:36:13 +0000 Subject: [PATCH] fixed typo [SVN r48256] --- include/boost/fusion/tuple/tuple.hpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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;