| 27 | namespace compute = boost::compute; |
| 28 | |
| 29 | BOOST_AUTO_TEST_CASE(value_type) |
| 30 | { |
| 31 | BOOST_STATIC_ASSERT(( |
| 32 | boost::is_same< |
| 33 | compute::buffer_iterator<int>::value_type, int |
| 34 | >::value |
| 35 | )); |
| 36 | BOOST_STATIC_ASSERT(( |
| 37 | boost::is_same< |
| 38 | compute::buffer_iterator<float>::value_type, float |
| 39 | >::value |
| 40 | )); |
| 41 | } |
| 42 | |
| 43 | BOOST_AUTO_TEST_CASE(reverse_external_buffer_doctest) |
| 44 | { |
nothing calls this directly
no test coverage detected