We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4660590 commit e458b55Copy full SHA for e458b55
zmij.cc
@@ -352,8 +352,8 @@ struct pow10_significands_table {
352
ZMIJ_CONSTEXPR auto operator[](int dec_exp) const noexcept -> uint128 {
353
constexpr int dec_exp_min = -292;
354
if (compress) {
355
+ // Compressed version using only 672 bytes of data.
356
unsigned i = dec_exp - dec_exp_min;
- // 672 bytes of data
357
static const uint64_t pow10s[28] = {
358
0x8000000000000000, 0xa000000000000000, 0xc800000000000000,
359
0xfa00000000000000, 0x9c40000000000000, 0xc350000000000000,
0 commit comments