Fix print_help for printing nothing

This commit is contained in:
Zhihao Yuan 2019-11-22 15:33:15 -06:00
parent 9cac1d0fed
commit 36003197c7
No known key found for this signature in database
GPG Key ID: 0BC0BC626A0C5A8E

View File

@ -515,8 +515,8 @@ public:
} }
// Format help message // Format help message
auto help() const -> std::ostringstream { auto help() const -> std::stringstream {
std::ostringstream out; std::stringstream out;
out << *this; out << *this;
return out; return out;
} }