| 754 | } |
| 755 | |
| 756 | std::string HelpMessageOpt(const std::string &option, const std::string &message) { |
| 757 | return std::string(optIndent,' ') + std::string(option) + |
| 758 | std::string("\n") + std::string(msgIndent,' ') + |
| 759 | FormatParagraph(message, screenWidth - msgIndent, msgIndent) + |
| 760 | std::string("\n\n"); |
| 761 | } |
| 762 | |
| 763 | static std::string FormatException(const std::exception* pex, const char* pszThread) |
| 764 | { |