| 68 | |
| 69 | template<class Result, class Expr> |
| 70 | void check_lambda_result(const Expr &) |
| 71 | { |
| 72 | BOOST_STATIC_ASSERT(( |
| 73 | boost::is_same< |
| 74 | typename ::boost::compute::lambda::result_of<Expr>::type, |
| 75 | Result |
| 76 | >::value |
| 77 | )); |
| 78 | } |
| 79 | |
| 80 | template<class Result, class Expr, class Arg1> |
| 81 | void check_lambda_result(const Expr &, const Arg1 &) |
nothing calls this directly
no outgoing calls
no test coverage detected