1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Coding style fixes

This commit is contained in:
Sergey Vojtovich
2020-04-03 20:53:53 +04:00
parent e4a960780f
commit 4338bb8a75
6 changed files with 28 additions and 22 deletions

View File

@@ -74,8 +74,9 @@ static inline CONSTEXPR uint my_bit_log2_size_t(size_t value)
{
#ifdef __cplusplus
static_assert(sizeof(size_t) <= sizeof(ulonglong),
"size_t <= ulonglong is an assumption that needs to be fixed for this architecture. "
"Please create an issue on https://jira.mariadb.org");
"size_t <= ulonglong is an assumption that needs to be fixed "
"for this architecture. Please create an issue on "
"https://jira.mariadb.org");
#endif
return my_bit_log2_uint64((ulonglong) value);
}