Suppress -Wstring-concatenation

This concatenation of string literals is to not empty the array
initialization even if no counter is declared, but warned by clang as
suspicious.
This commit is contained in:
Nobuyoshi Nakada 2022-07-02 22:41:19 +09:00
Родитель 8c6a2cc24e
Коммит d8be7d463d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,9 @@
#if USE_DEBUG_COUNTER
static const char *const debug_counter_names[] = {
""
#define DEBUG_COUNTER_NAME_EMPTY "" /* Suppress -Wstring-concatenation */
DEBUG_COUNTER_NAME_EMPTY
#undef DEBUG_COUNTER_NAME_EMPTY
#define RB_DEBUG_COUNTER(name) #name,
#include "debug_counter.h"
#undef RB_DEBUG_COUNTER