You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@fsb4000 reported a bug in libc++'s format implementation. While investigating that bug I noticed that for a small part I'm in good company; MSVC STL has the same bug:
std::format("{:#.{}}\n", 1200.0 0); // 1e+03. instead of 1.e+03
std::format("{:#.{}g}\n", 1200.0 0); // 1.e+03 as expected (types a, e, and f are good too.)
@fsb4000 reported a bug in libc++'s format implementation. While investigating that bug I noticed that for a small part I'm in good company; MSVC STL has the same bug:
More examples at https://godbolt.org/z/fTsKaf6vz
The text was updated successfully, but these errors were encountered: