| 5279 | |
| 5280 | #if defined(CL_VERSION_1_2) |
| 5281 | cl_int compile( |
| 5282 | const char* options = NULL, |
| 5283 | void (CL_CALLBACK * notifyFptr)(cl_program, void *) = NULL, |
| 5284 | void* data = NULL) const |
| 5285 | { |
| 5286 | return detail::errHandler( |
| 5287 | ::clCompileProgram( |
| 5288 | object_, |
| 5289 | 0, |
| 5290 | NULL, |
| 5291 | options, |
| 5292 | 0, |
| 5293 | NULL, |
| 5294 | NULL, |
| 5295 | notifyFptr, |
| 5296 | data), |
| 5297 | __COMPILE_PROGRAM_ERR); |
| 5298 | } |
| 5299 | #endif |
| 5300 | |
| 5301 | template <typename T> |
nothing calls this directly
no test coverage detected