| 212 | } |
| 213 | |
| 214 | static std::string getValidValues(const OptionGroupProto& group) |
| 215 | { |
| 216 | return fmt::format("{}", |
| 217 | fmt::join( |
| 218 | std::views::transform(group.option(), &OptionProto::name), ", ")); |
| 219 | } |
| 220 | |
| 221 | std::vector<std::string> Config::validate() |
| 222 | { |