| 84 | |
| 85 | |
| 86 | std::string to_string(kernel_build_flag f) { |
| 87 | const auto& map = string_build_config_mapper::get().build_flag_to_string_map(); |
| 88 | auto it = map.find(f); |
| 89 | if(it == map.end()) |
| 90 | return {}; |
| 91 | return it->second; |
| 92 | } |
| 93 | |
| 94 | std::string to_string(kernel_build_option o) { |
| 95 | const auto& map = string_build_config_mapper::get().build_option_to_string_map(); |
no test coverage detected