From: <sv...@op...> - 2024-11-03 08:06:54
|
Author: manx Date: Sun Nov 3 09:06:42 2024 New Revision: 22091 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22091 Log: [Fix] mpt/string/types.hpp: Fix typo in r22063. Modified: trunk/OpenMPT/src/mpt/string/types.hpp Modified: trunk/OpenMPT/src/mpt/string/types.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/string/types.hpp Sat Nov 2 22:11:52 2024 (r22090) +++ trunk/OpenMPT/src/mpt/string/types.hpp Sun Nov 3 09:06:42 2024 (r22091) @@ -285,10 +285,10 @@ using u8string = std::u8string; using u8string_view = std::u8string_view; using u8char = char8_t; -#define MPT_U8CHAR(x) u8##x -#define MPT_U8LITERAL(x) u8##x -#define MPT_U8STRING(x) std::u8string(u8##x) -#define MPT_U8STRINVIEW(x) std::u8string_view(u8##x) +#define MPT_U8CHAR(x) u8##x +#define MPT_U8LITERAL(x) u8##x +#define MPT_U8STRING(x) std::u8string(u8##x) +#define MPT_U8STRINGVIEW(x) std::u8string_view(u8##x) #else // !C++20 |