silence compiler warning on windows

This commit is contained in:
Axel Kohlmeyer
2021-10-06 16:41:29 -04:00
parent f643c2b98f
commit aab3e085a2
7 changed files with 14 additions and 9 deletions

View File

@ -1172,7 +1172,7 @@ double utils::timespec2seconds(const std::string &timespec)
if (!values.has_next()) break;
vals[i] = values.next_int();
}
} catch (TokenizerException &e) {
} catch (TokenizerException &) {
return -1.0;
}