| 3412 | } |
| 3413 | |
| 3414 | inline void Program_impl::load_sources(std::string source, |
| 3415 | std::vector<std::string> headers, |
| 3416 | std::vector<std::string> options, |
| 3417 | file_callback_type file_callback) { |
| 3418 | _config->options = options; |
| 3419 | detail::load_program(source, headers, file_callback, &_config->include_paths, |
| 3420 | &_config->sources, &_config->options, &_config->name); |
| 3421 | } |
| 3422 | |
| 3423 | enum Location { HOST, DEVICE }; |
| 3424 |
no test coverage detected