Removing typo

This commit is contained in:
Daniel Lemire 2020-06-23 14:22:39 -04:00
parent 6993db7524
commit 7a4a8847d4

View File

@ -1050,8 +1050,7 @@ namespace cxxopts
std::string m_short{}; std::string m_short{};
std::string m_long{}; std::string m_long{};
String m_desc{}; String m_desc{};
std::shared_ptr<const Value> m_value{} std::shared_ptr<const Value> m_value{};
;
int m_count; int m_count;
}; };
@ -1481,6 +1480,10 @@ namespace cxxopts
if (!s.empty()) if (!s.empty())
{ {
result += "-" + toLocalString(s) + ","; result += "-" + toLocalString(s) + ",";
if (!l.empty())
{
result += ",";
}
} }
else else
{ {