| 5750 | |
| 5751 | template <typename T> |
| 5752 | cl_int getInfo(cl_kernel_info name, T* param) const |
| 5753 | { |
| 5754 | return detail::errHandler( |
| 5755 | detail::getInfo(&::clGetKernelInfo, object_, name, param), |
| 5756 | __GET_KERNEL_INFO_ERR); |
| 5757 | } |
| 5758 | |
| 5759 | template <cl_kernel_info name> typename |
| 5760 | detail::param_traits<detail::cl_kernel_info, name>::param_type |
nothing calls this directly
no test coverage detected