123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_COMPUTE_DETAIL_IS_BUFFER_ITERATOR_HPP
- #define BOOST_COMPUTE_DETAIL_IS_BUFFER_ITERATOR_HPP
- #include <boost/config.hpp>
- #include <boost/type_traits.hpp>
- #include <boost/utility/enable_if.hpp>
- namespace boost {
- namespace compute {
- namespace detail {
- template<class Iterator, class Enable = void>
- struct is_buffer_iterator : public boost::false_type {};
- }
- }
- }
- #endif
|