bool grisu_format is not supposed to be imported/exported
when sizeof(Double) == sizeof(uint64_t)
This commit is contained in:
parent
8b3227f97d
commit
6d0343fe5a
@ -1122,7 +1122,7 @@ enum {
|
|||||||
// Formats value using the Grisu algorithm:
|
// Formats value using the Grisu algorithm:
|
||||||
// https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf
|
// https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf
|
||||||
template <typename Double, FMT_ENABLE_IF(sizeof(Double) == sizeof(uint64_t))>
|
template <typename Double, FMT_ENABLE_IF(sizeof(Double) == sizeof(uint64_t))>
|
||||||
FMT_API bool grisu_format(Double, buffer<char>&, int, unsigned, int&);
|
bool grisu_format(Double, buffer<char>&, int, unsigned, int&);
|
||||||
template <typename Double, FMT_ENABLE_IF(sizeof(Double) != sizeof(uint64_t))>
|
template <typename Double, FMT_ENABLE_IF(sizeof(Double) != sizeof(uint64_t))>
|
||||||
inline bool grisu_format(Double, buffer<char>&, int, unsigned, int&) {
|
inline bool grisu_format(Double, buffer<char>&, int, unsigned, int&) {
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user