From 4910f26ce910491f3cf0483047dcb76092c63acf Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Fri, 29 Jan 2010 15:45:24 +0000 Subject: [PATCH] Fusion: minor fix for adapt_class_named [SVN r59345] --- include/boost/fusion/adapted/class/adapt_class_named.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/fusion/adapted/class/adapt_class_named.hpp b/include/boost/fusion/adapted/class/adapt_class_named.hpp index 3878c384..f96eba72 100644 --- a/include/boost/fusion/adapted/class/adapt_class_named.hpp +++ b/include/boost/fusion/adapted/class/adapt_class_named.hpp @@ -124,13 +124,13 @@ \ class_member_proxy& operator=(cref_type val) \ { \ - obj.BOOST_PP_TUPLE_ELEM(4, 3, xy); \ + BOOST_PP_TUPLE_ELEM(4, 3, xy); \ return *this; \ } \ \ operator lvalue() \ { \ - return obj.BOOST_PP_TUPLE_ELEM(4, 2, xy); \ + return BOOST_PP_TUPLE_ELEM(4, 2, xy); \ } \ }; \ \ @@ -143,7 +143,7 @@ \ static get_type call(fullname const& obj) \ { \ - return obj.BOOST_PP_TUPLE_ELEM(4, 2, xy); \ + return BOOST_PP_TUPLE_ELEM(4, 2, xy); \ } \ \ static proxy call(fullname& obj) \