mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 20:18:49 +00:00
Fix fallback pointer formatting on big endian, take 2
This commit is contained in:
parent
b994a0ab13
commit
aaf829bfb1
@ -231,7 +231,10 @@ struct fallback_uintptr {
|
|||||||
fallback_uintptr() = default;
|
fallback_uintptr() = default;
|
||||||
explicit fallback_uintptr(const void* p) {
|
explicit fallback_uintptr(const void* p) {
|
||||||
*this = bit_cast<fallback_uintptr>(p);
|
*this = bit_cast<fallback_uintptr>(p);
|
||||||
if (is_big_endian()) std::memmove(value, value, sizeof(void*));
|
if (is_big_endian()) {
|
||||||
|
for (size_t i = 0, j = sizeof(void*) - 1; i < j; ++i, --j)
|
||||||
|
std::swap(value[i], value[j]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
#ifdef UINTPTR_MAX
|
#ifdef UINTPTR_MAX
|
||||||
|
Loading…
Reference in New Issue
Block a user