summaryrefslogtreecommitdiff
path: root/boost/fusion/support/detail/access.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/support/detail/access.hpp')
-rw-r--r--boost/fusion/support/detail/access.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/fusion/support/detail/access.hpp b/boost/fusion/support/detail/access.hpp
index 03c9c3191d..ced7cea18b 100644
--- a/boost/fusion/support/detail/access.hpp
+++ b/boost/fusion/support/detail/access.hpp
@@ -15,7 +15,7 @@ namespace boost { namespace fusion { namespace detail
template <typename T>
struct ref_result
{
- typedef typename add_reference<typename T::type>::type type;
+ typedef typename add_reference<T>::type type;
};
template <typename T>
@@ -23,7 +23,7 @@ namespace boost { namespace fusion { namespace detail
{
typedef typename
add_reference<
- typename add_const<typename T::type>::type
+ typename add_const<T>::type
>::type
type;
};