MSVC warning message
This commit is contained in:
parent
5ddde370b6
commit
7d00e10378
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ int main(int argc, char** argv) {
|
|||
for (int j = 1; j < argc; j++) {
|
||||
tok = string(argv[j]);
|
||||
if (tok[0] == '-') {
|
||||
int nopt = tok.size();
|
||||
int nopt = static_cast<int>(tok.size());
|
||||
for (int n = 1; n < nopt; n++) {
|
||||
if (tok[n] == 'h') {
|
||||
printUsage();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue