| 16 | #include <boost/compute/type_traits/result_of.hpp> |
| 17 | |
| 18 | BOOST_AUTO_TEST_CASE(result_of_function) |
| 19 | { |
| 20 | using boost::compute::function; |
| 21 | using boost::compute::result_of; |
| 22 | |
| 23 | BOOST_STATIC_ASSERT(( |
| 24 | boost::is_same<result_of<function<int()>()>::type, int>::value |
| 25 | )); |
| 26 | } |
| 27 | |
| 28 | BOOST_AUTO_TEST_CASE(result_of_operators) |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected