mimalloc
mimalloc copied to clipboard
Crash on Android
This code crashes on Android with mimalloc with overrides statically linked:
std::stringstream ss;
ss << std::setprecision(std::numeric_limits<long double>::max_digits10); // Crashes.
ss << std::setprecision(std::numeric_limits<long double>::digits10); // Passes with reduced precision.
ss << static_cast<long double>(-176.652900000000000000000000000000008);