1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-31340 fixup: clang++-20 -Wdeprecated-literal-operator

This commit is contained in:
Marko Mäkelä
2024-12-02 10:44:06 +02:00
parent d4d5bce2da
commit 4d9548876e
2 changed files with 9 additions and 9 deletions

View File

@@ -222,7 +222,7 @@ typedef struct st_mysql_const_lex_string LEX_CSTRING;
#ifdef __cplusplus
static inline constexpr
LEX_CSTRING operator"" _LEX_CSTRING(const char *str, size_t length)
LEX_CSTRING operator""_LEX_CSTRING(const char *str, size_t length)
{
return LEX_CSTRING{str, length};
}