single param added extra comma for help..

This commit is contained in:
Koos du Preez 2018-12-23 09:11:44 -08:00
parent 70b9230639
commit 27f48df1de

View File

@ -1300,7 +1300,9 @@ namespace cxxopts
if (s.size() > 0)
{
result += "-" + toLocalString(s) + ",";
result += "-" + toLocalString(s);
if (l.size() > 0)
result += ",";
}
else
{