summaryrefslogtreecommitdiff
path: root/boost/fusion/container/list/detail/deref_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/container/list/detail/deref_impl.hpp')
-rw-r--r--boost/fusion/container/list/detail/deref_impl.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/fusion/container/list/detail/deref_impl.hpp b/boost/fusion/container/list/detail/deref_impl.hpp
index aefffd757f..3358a2a2f9 100644
--- a/boost/fusion/container/list/detail/deref_impl.hpp
+++ b/boost/fusion/container/list/detail/deref_impl.hpp
@@ -27,18 +27,18 @@ namespace boost { namespace fusion
struct deref_impl<cons_iterator_tag>
{
template <typename Iterator>
- struct apply
+ struct apply
{
typedef typename Iterator::cons_type cons_type;
typedef typename cons_type::car_type value_type;
-
+
typedef typename mpl::eval_if<
is_const<cons_type>
, add_reference<typename add_const<value_type>::type>
, add_reference<value_type> >::type
type;
-
- BOOST_FUSION_GPU_ENABLED
+
+ BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static type
call(Iterator const& i)
{