args parser fix
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
#define UTIL_COMMAND_LINE_HPP_
|
#define UTIL_COMMAND_LINE_HPP_
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <cstring>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include "../files/engine_paths.hpp"
|
#include "../files/engine_paths.hpp"
|
||||||
@@ -19,7 +20,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool hasNext() const {
|
bool hasNext() const {
|
||||||
return pos < argc;
|
return pos < argc && strlen(argv[pos]);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isKeywordArg() const {
|
bool isKeywordArg() const {
|
||||||
|
|||||||
Reference in New Issue
Block a user