clang format
This commit is contained in:
parent
7463c83205
commit
51d13724c3
@ -42,7 +42,7 @@
|
|||||||
#include <utility> // std::swap
|
#include <utility> // std::swap
|
||||||
|
|
||||||
#ifdef __cpp_lib_bit_cast
|
#ifdef __cpp_lib_bit_cast
|
||||||
#include <bit> // std::bitcast
|
# include <bit> // std::bitcast
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "core.h"
|
#include "core.h"
|
||||||
@ -1720,7 +1720,7 @@ inline auto write_significand(Char* out, UInt significand, int significand_size,
|
|||||||
out += significand_size + 1;
|
out += significand_size + 1;
|
||||||
Char* end = out;
|
Char* end = out;
|
||||||
int floating_size = significand_size - integral_size;
|
int floating_size = significand_size - integral_size;
|
||||||
for(int i = floating_size / 2; i > 0; --i) {
|
for (int i = floating_size / 2; i > 0; --i) {
|
||||||
out -= 2;
|
out -= 2;
|
||||||
copy2(out, digits2(significand % 100));
|
copy2(out, digits2(significand % 100));
|
||||||
significand /= 100;
|
significand /= 100;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user