| 418 | } |
| 419 | |
| 420 | std::string HelpMessageOpt(const std::string &option, const std::string &message) { |
| 421 | return std::string(optIndent,' ') + std::string(option) + |
| 422 | std::string("\n") + std::string(msgIndent,' ') + |
| 423 | FormatParagraph(message, screenWidth - msgIndent, msgIndent) + |
| 424 | std::string("\n\n"); |
| 425 | } |
| 426 | |
| 427 | static std::string FormatException(const std::exception* pex, const char* pszThread) |
| 428 | { |
no test coverage detected