summaryrefslogtreecommitdiff
path: root/boost/fusion/algorithm/query/find_if_fwd.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/algorithm/query/find_if_fwd.hpp')
-rw-r--r--boost/fusion/algorithm/query/find_if_fwd.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/boost/fusion/algorithm/query/find_if_fwd.hpp b/boost/fusion/algorithm/query/find_if_fwd.hpp
index adb8f2de60..419a68c472 100644
--- a/boost/fusion/algorithm/query/find_if_fwd.hpp
+++ b/boost/fusion/algorithm/query/find_if_fwd.hpp
@@ -7,6 +7,7 @@
#if !defined(BOOST_FUSION_FIND_IF_FWD_HPP_INCLUDED)
#define BOOST_FUSION_FIND_IF_FWD_HPP_INCLUDED
+#include <boost/fusion/support/config.hpp>
#include <boost/utility/enable_if.hpp>
#include <boost/type_traits/is_const.hpp>
@@ -20,6 +21,7 @@ namespace boost { namespace fusion
}
template <typename Pred, typename Sequence>
+ BOOST_FUSION_GPU_ENABLED
typename
lazy_disable_if<
is_const<Sequence>
@@ -28,6 +30,7 @@ namespace boost { namespace fusion
find_if(Sequence& seq);
template <typename Pred, typename Sequence>
+ BOOST_FUSION_GPU_ENABLED
typename result_of::find_if<Sequence const, Pred>::type const
find_if(Sequence const& seq);
}}