summaryrefslogtreecommitdiff
path: root/boost/fusion/container/list/detail/list_to_cons_call.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/container/list/detail/list_to_cons_call.hpp')
-rw-r--r--boost/fusion/container/list/detail/list_to_cons_call.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/fusion/container/list/detail/list_to_cons_call.hpp b/boost/fusion/container/list/detail/list_to_cons_call.hpp
index 430e462c9d..fbae58009e 100644
--- a/boost/fusion/container/list/detail/list_to_cons_call.hpp
+++ b/boost/fusion/container/list/detail/list_to_cons_call.hpp
@@ -26,14 +26,14 @@
///////////////////////////////////////////////////////////////////////////////
#define N BOOST_PP_ITERATION()
- BOOST_FUSION_GPU_ENABLED
+ BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
static type
call(BOOST_PP_ENUM_BINARY_PARAMS(
- N, typename detail::call_param<T, >::type _))
+ N, typename detail::call_param<T, >::type arg))
{
- return type(_0
+ return type(arg0
#if N > 1
- , tail_list_to_cons::call(BOOST_PP_ENUM_SHIFTED_PARAMS(N, _)));
+ , tail_list_to_cons::call(BOOST_PP_ENUM_SHIFTED_PARAMS(N, arg)));
#else
);
#endif