mirror of
https://github.com/jarro2783/cxxopts.git
synced 2026-08-22 14:18:02 +02:00
Fix warning
This commit is contained in:
+1
-1
@@ -998,7 +998,7 @@ Options::parse(int& argc, char**& argv)
|
||||
{
|
||||
const std::string& s = result[4];
|
||||
|
||||
for (int i = 0; i != s.size(); ++i)
|
||||
for (std::size_t i = 0; i != s.size(); ++i)
|
||||
{
|
||||
std::string name(1, s[i]);
|
||||
auto iter = m_options.find(name);
|
||||
|
||||
Reference in New Issue
Block a user