Stephan T. Lavavej
Stephan T. Lavavej
Thanks! I have both `'line'` and `'bar' | 'line'` charts, which made things more complicated, but I was able to get this working.
I'll try to find some free time this summer.
binutils 2.38 has been released and contains the claimed fix, so I just need to build it.
https://github.com/uutils/coreutils is probably my best bet here, assuming MSYS2 can retrieve a Rust compiler.
Still repros with mingw-w64 9.0.0, so I don't think the upstream project(s) are properly aware of this yet.
https://github.com/microsoft/STL/wiki/VS-2019-Changelog#vs-2019-1610 > While the STL generally provides all features on all supported versions of Windows, leap seconds and time zones (which change over time) require OS support that was added...
I previously experienced this issue in a CRLF codebase (only with this extension, not MS's C/C++ extension), but now that we've upgraded to clang-format 10 and added `UseCRLF: true`, it...
You want `d2s_buffered()` for Ulf's Ryu shortest-round trip algorithm: https://github.com/ulfjack/ryu/blob/6f85836b6389dce334692829d818cdedb28bfa00/ryu/d2s.c#L498 `d2fixed_buffered()` implements Ulf's Ryu Printf algorithm which is given a precision for fixed notation (the precision is the number of...
This repo doesn't generate shortest fixed notation. However, if you're using C++, you can use C++17 `` - I did the work in MSVC to adapt Ulf's code. If you...
@newbie-02 Both Clang's libc++ and GCC's libstdc++ now support floating-point `to_chars()` powered by Ryu. Clang's implementation was ported by @mordante from MSVC, which in turn was derived from Ulf's repo...