Fix rounding

This commit is contained in:
Victor Zverovich
2019-02-02 08:49:25 -08:00
parent e61cac687d
commit b8d34e0db3
3 changed files with 15 additions and 7 deletions

View File

@@ -750,7 +750,7 @@ template <typename T> struct int_traits {
// Static data is placed in this class template to allow header-only
// configuration.
template <typename T = void> struct FMT_API basic_data {
static const uint32_t POWERS_OF_10_32[];
static const uint64_t POWERS_OF_10_64[];
static const uint32_t ZERO_OR_POWERS_OF_10_32[];
static const uint64_t ZERO_OR_POWERS_OF_10_64[];
static const uint64_t POW10_SIGNIFICANDS[];