| 673 | } |
| 674 | |
| 675 | std::string HelpMessageOpt(const std::string &option, const std::string &message) { |
| 676 | return std::string(optIndent,' ') + std::string(option) + |
| 677 | std::string("\n") + std::string(msgIndent,' ') + |
| 678 | FormatParagraph(message, screenWidth - msgIndent, msgIndent) + |
| 679 | std::string("\n\n"); |
| 680 | } |
| 681 | |
| 682 | static std::string FormatException(const std::exception* pex, const char* pszThread) |
| 683 | { |
no test coverage detected