| 480 | } |
| 481 | |
| 482 | std::string HelpMessageOpt(const std::string &option, const std::string &message) { |
| 483 | return std::string(optIndent,' ') + std::string(option) + |
| 484 | std::string("\n") + std::string(msgIndent,' ') + |
| 485 | FormatParagraph(message, screenWidth - msgIndent, msgIndent) + |
| 486 | std::string("\n\n"); |
| 487 | } |
| 488 | |
| 489 | static std::string FormatException(std::exception* pex, const char* pszThread) |
| 490 | { |
no test coverage detected