Removing typo
This commit is contained in:
parent
6993db7524
commit
7a4a8847d4
@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user