diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-29 23:16:46 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-29 23:16:46 -0500 |
commit | 8dcb1de91e15ff7fc66279cd9cd9ad8a70f624e0 (patch) | |
tree | c73840b15a074cf37f59bc3b2eff56cde982d74f /source/fud_assert.cpp | |
parent | 8ce397e8c0a83e49e390de9deb73d588e4931ecf (diff) |
u8 string literals
Diffstat (limited to 'source/fud_assert.cpp')
-rw-r--r-- | source/fud_assert.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fud_assert.cpp b/source/fud_assert.cpp index e16f65e..7838e22 100644 --- a/source/fud_assert.cpp +++ b/source/fud_assert.cpp @@ -18,7 +18,7 @@ #include "fud_assert.hpp" #include "fud_format.hpp" -#include "fud_string.hpp" // DrainResult +#include "fud_drain.hpp" #include "fud_string_view.hpp" #include <cstdio> @@ -64,7 +64,7 @@ void assertFailMessage(const char* assertion, const std::source_location sourceL static_cast<void>(format( sink, FormatCharMode::Unchecked, - "{}:{}:{}: {}\n", + u8"{}:{}:{}: {}\n", fileName, functionName, sourceLocation.line(), |