helpers.cpp: Fix GLIBCXX_RELEASE check < 8 (#7062)

This commit is contained in:
Christian Ferbar 2024-07-11 05:58:54 +02:00 committed by GitHub
parent d1b0e6b5fe
commit fb6c2aef59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ static const uint16_t CRC16_1021_BE_LUT_H[] = {0x0000, 0x1231, 0x2462, 0x3653, 0
// STL backports
#if _GLIBCXX_RELEASE < 7
#if _GLIBCXX_RELEASE < 8
std::string to_string(int value) { return str_snprintf("%d", 32, value); } // NOLINT
std::string to_string(long value) { return str_snprintf("%ld", 32, value); } // NOLINT
std::string to_string(long long value) { return str_snprintf("%lld", 32, value); } // NOLINT