Skip to content

Commit

Permalink
Added forgotten ' ' space char to list of search of space characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
igormironchik committed Aug 10, 2016
1 parent dd52431 commit f2d5bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Args/help_printer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ HelpPrinter::createUsageString( ArgIface * arg )
static inline bool
isSpaceChar( const char & c )
{
static const std::string spaceChars = " \n\t\r";
static const std::string spaceChars = " \n\t\r ";

return ( spaceChars.find( c ) != std::string::npos );
}
Expand Down

0 comments on commit f2d5bb2

Please sign in to comment.