| 4904 | |
| 4905 | template <typename T> |
| 4906 | cl_int getInfo(cl_kernel_info name, T* param) const |
| 4907 | { |
| 4908 | return detail::errHandler( |
| 4909 | detail::getInfo(&::clGetKernelInfo, object_, name, param), |
| 4910 | __GET_KERNEL_INFO_ERR); |
| 4911 | } |
| 4912 | |
| 4913 | template <cl_int name> typename |
| 4914 | detail::param_traits<detail::cl_kernel_info, name>::param_type |
nothing calls this directly
no test coverage detected