Skip to content

Commit

Permalink
nvhpc/22.3: workaround for c++17 mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
olupton committed Aug 18, 2022
1 parent 36c23bd commit 06b9b16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 06b9b16

Please sign in to comment.