This commit is contained in:
eelke 2022-01-21 18:54:50 +01:00
parent 14b5293dea
commit a7f247bdee
5 changed files with 1 additions and 15 deletions

View file

@ -83,7 +83,7 @@ Value::operator int64_t() const
if (m_val == nullptr)
return 0LL;
const int len = std::strlen(m_val);
const int len = std::strlen(m_val);
if (len > 0) {
char *endptr = nullptr;
int64_t result = std::strtoll(m_val, &endptr, 10);