| 52 | } |
| 53 | |
| 54 | void CLBuildOptions::add_option_if_else(bool cond, std::string option_true, std::string option_false) |
| 55 | { |
| 56 | (cond) ? add_option(std::move(option_true)) : add_option(std::move(option_false)); |
| 57 | } |
| 58 | |
| 59 | void CLBuildOptions::add_options(const StringSet &options) |
| 60 | { |
no outgoing calls
no test coverage detected