| 6542 | |
| 6543 | template <typename T> |
| 6544 | cl_int getBuildInfo( |
| 6545 | const Device& device, cl_program_build_info name, T* param) const |
| 6546 | { |
| 6547 | return detail::errHandler( |
| 6548 | detail::getInfo( |
| 6549 | &::clGetProgramBuildInfo, object_, device(), name, param), |
| 6550 | __GET_PROGRAM_BUILD_INFO_ERR); |
| 6551 | } |
| 6552 | |
| 6553 | template <cl_program_build_info name> typename |
| 6554 | detail::param_traits<detail::cl_program_build_info, name>::param_type |
nothing calls this directly
no test coverage detected