1
0
Fork 0
This commit is contained in:
jsteemann 2016-08-25 14:04:42 +02:00
parent c6efe26198
commit a24d26d74f
1 changed files with 1 additions and 1 deletions

View File

@ -515,7 +515,7 @@ void ImportHelper::addField(char const* field, size_t fieldLength, size_t row,
if (fieldLength > 8) {
// long integer numbers might be problematic. check if we get out of
// range
std::stoll(std::string(
(void) std::stoll(std::string(
field,
fieldLength)); // this will fail if the number cannot be converted
}