| 524 | } |
| 525 | |
| 526 | static void SaveErrors(const std::vector<std::string> errors, std::vector<std::string>* error_out) |
| 527 | { |
| 528 | for (const auto& error : errors) { |
| 529 | if (error_out) { |
| 530 | error_out->emplace_back(error); |
| 531 | } else { |
| 532 | LogPrintf("%s\n", error); |
| 533 | } |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | bool ArgsManager::ReadSettingsFile(std::vector<std::string>* errors) |
| 538 | { |
no test coverage detected