]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/compute/algorithm/find_if.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / compute / algorithm / find_if.hpp
index 074b47e280cd00bdc9098c52b1931f625f47447c..42aec79a987143c9e74ca7253ade53e91cd41b89 100644 (file)
 #ifndef BOOST_COMPUTE_ALGORITHM_FIND_IF_HPP
 #define BOOST_COMPUTE_ALGORITHM_FIND_IF_HPP
 
+#include <boost/static_assert.hpp>
+
 #include <boost/compute/system.hpp>
 #include <boost/compute/command_queue.hpp>
 #include <boost/compute/algorithm/detail/find_if_with_atomics.hpp>
+#include <boost/compute/type_traits/is_device_iterator.hpp>
 
 namespace boost {
 namespace compute {
@@ -28,6 +31,7 @@ inline InputIterator find_if(InputIterator first,
                              UnaryPredicate predicate,
                              command_queue &queue = system::default_queue())
 {
+    BOOST_STATIC_ASSERT(is_device_iterator<InputIterator>::value);
     return detail::find_if_with_atomics(first, last, predicate, queue);
 }