1
0

fix: redirect all std::format to my personal format

This commit is contained in:
2025-09-28 21:44:44 +08:00
parent 8d7eff2a15
commit d6b1d7fd46
3 changed files with 6 additions and 10 deletions

View File

@ -18,7 +18,7 @@ namespace yycc::rust::panic {
// It seems that STL providers are not ready for this feature. So I decide remove it entirely.
// Once every STL probiders have ready for this, I will add it back.
void panic(const char* file, int line, const std::string_view& msg) {
void panic(const char* file, int line, const std::u8string_view& msg) {
// Output message in stderr.
auto& dst = std::cerr;