| 5321 | |
| 5322 | template <typename T> |
| 5323 | cl_int getBuildInfo( |
| 5324 | const Device& device, cl_program_build_info name, T* param) const |
| 5325 | { |
| 5326 | return detail::errHandler( |
| 5327 | detail::getInfo( |
| 5328 | &::clGetProgramBuildInfo, object_, device(), name, param), |
| 5329 | __GET_PROGRAM_BUILD_INFO_ERR); |
| 5330 | } |
| 5331 | |
| 5332 | template <cl_int name> typename |
| 5333 | detail::param_traits<detail::cl_program_build_info, name>::param_type |
nothing calls this directly
no test coverage detected