Fusion: minor fix for adapt_class_named

[SVN r59345]
This commit is contained in:
Hartmut Kaiser
2010-01-29 15:45:24 +00:00
parent c24441c83d
commit 4910f26ce9

View File

@ -124,13 +124,13 @@
\ \
class_member_proxy& operator=(cref_type val) \ class_member_proxy& operator=(cref_type val) \
{ \ { \
obj.BOOST_PP_TUPLE_ELEM(4, 3, xy); \ BOOST_PP_TUPLE_ELEM(4, 3, xy); \
return *this; \ return *this; \
} \ } \
\ \
operator lvalue() \ 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) \ 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) \ static proxy call(fullname& obj) \