refactored extension::struct_member to extension::access::struct_member

[SVN r64490]
This commit is contained in:
Christopher Schmidt
2010-07-31 00:17:34 +00:00
parent c879ab02c3
commit aa1bcfaa9a
10 changed files with 141 additions and 33 deletions

View File

@ -13,21 +13,12 @@
#include <boost/type_traits/remove_const.hpp>
#include <boost/type_traits/remove_reference.hpp>
namespace boost { namespace fusion
namespace boost { namespace fusion { namespace detail
{
namespace detail
{
template <typename T, typename Dummy>
struct get_identity
: remove_const<typename remove_reference<T>::type>
{};
}
namespace extension
{
template <typename T, int N>
struct class_member_proxy;
}
}}
template <typename T, typename Dummy>
struct get_identity
: remove_const<typename remove_reference<T>::type>
{};
}}}
#endif