From f2d5bb2f4d16f612f68e988b35d90b7304d8d922 Mon Sep 17 00:00:00 2001 From: Igor Mironchik Date: Wed, 10 Aug 2016 16:06:11 +0300 Subject: [PATCH] Added forgotten ' ' space char to list of search of space characters. --- Args/help_printer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Args/help_printer.hpp b/Args/help_printer.hpp index cbdae0c3..7d1fe0d8 100644 --- a/Args/help_printer.hpp +++ b/Args/help_printer.hpp @@ -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 ); }