Open Slion opened 2 hours ago
SDK 2.0.0 GCC 13.2.1 C++ 20
std::format("Hello {}!\n", "World") works std::format("Hello {}!\n", 32) crashes
std::format("Hello {}!\n", "World")
std::format("Hello {}!\n", 32)
@vitaut Any idea what could be causing this?
Not really but if you have a repro please report to libstdc++ maintainers.
SDK 2.0.0 GCC 13.2.1 C++ 20
std::format("Hello {}!\n", "World")
worksstd::format("Hello {}!\n", 32)
crashes