nvhpc/22.3: workaround for c++17 mode.

This commit is contained in:
Olli Lupton 2022-08-08 17:27:37 +02:00
parent 36c23bd5fd
commit f06c45c00f
No known key found for this signature in database
GPG Key ID: 2886C101B2C08D0E

View File

@ -1557,7 +1557,10 @@ FMT_CONSTEXPR inline fp get_cached_power(int min_exponent,
const int dec_exp_step = 8;
index = (index - first_dec_exp - 1) / dec_exp_step + 1;
pow10_exponent = first_dec_exp + index * dec_exp_step;
return {data::pow10_significands[index], data::pow10_exponents[index]};
// Using *(x + index) instead of x[index] avoids an issue with some compilers
// using the EDG frontend (e.g. nvhpc/22.3 in C++17 mode).
return {*(data::pow10_significands + index),
*(data::pow10_exponents + index)};
}
#ifndef _MSC_VER