Nathan

Results 1 issues of Nathan

Compiler is gcc 8.3.1 Can reproduce on godbolt with this code: ``` #include "fmt/format.h" int main() { char buffer[4]; auto result = fmt::format_to(buffer, "{}", 12345); } ``` Output on godbolt:...