Commit 21489b233d4920b0964d9eade8b00ef6e7ceb66a

Authored by Jarryd Beck
1 parent 2e157e98

fix long line

Showing 1 changed file with 2 additions and 1 deletions
src/cxxopts.hpp
... ... @@ -1320,7 +1320,8 @@ Options::help_one_group(const std::string& g) const
1320 1320 std::string
1321 1321 Options::help(const std::vector<std::string>& groups) const
1322 1322 {
1323   - String result = m_help_string + "\nUsage:\n " + toLocalString(m_program) + " [OPTION...]\n\n";
  1323 + String result = m_help_string + "\nUsage:\n " +
  1324 + toLocalString(m_program) + " [OPTION...]\n\n";
1324 1325  
1325 1326 for (std::size_t i = 0; i < groups.size(); ++i)
1326 1327 {
... ...