| 436 | } |
| 437 | |
| 438 | void Config::applyOption(const OptionInfo& optionInfo) |
| 439 | { |
| 440 | auto* option = optionInfo.option; |
| 441 | log(OptionLogMessage{ |
| 442 | option->has_message() ? option->message() : option->comment()}); |
| 443 | |
| 444 | _appliedOptions.insert(optionInfo); |
| 445 | } |
| 446 | |
| 447 | bool Config::applyOption(const std::string& name, const std::string value) |
| 448 | { |
no test coverage detected