| 44 | } |
| 45 | |
| 46 | void CLBuildOptions::add_option_if(bool cond, std::string option) |
| 47 | { |
| 48 | if (cond) |
| 49 | { |
| 50 | add_option(std::move(option)); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | void CLBuildOptions::add_option_if_else(bool cond, std::string option_true, std::string option_false) |
| 55 | { |
no outgoing calls
no test coverage detected