summaryrefslogtreecommitdiff
path: root/boost/fusion/algorithm/transformation/pop_front.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/algorithm/transformation/pop_front.hpp')
-rw-r--r--boost/fusion/algorithm/transformation/pop_front.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/fusion/algorithm/transformation/pop_front.hpp b/boost/fusion/algorithm/transformation/pop_front.hpp
index 636ab12c9a..11b7f6ee1b 100644
--- a/boost/fusion/algorithm/transformation/pop_front.hpp
+++ b/boost/fusion/algorithm/transformation/pop_front.hpp
@@ -20,19 +20,19 @@ namespace boost { namespace fusion
template <typename Sequence>
struct pop_front
{
- typedef
+ typedef
iterator_range<
typename next<
typename begin<Sequence>::type
>::type
, typename end<Sequence>::type
- >
+ >
type;
};
}
template <typename Sequence>
- BOOST_FUSION_GPU_ENABLED
+ BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
inline typename result_of::pop_front<Sequence const>::type
pop_front(Sequence const& seq)
{