* Optimize macro LOG_DEBUG

* Update debug.h

* use `(void)0`
This commit is contained in:
Yulong Wang 2018-03-27 20:40:54 -07:00 коммит произвёл GitHub
Родитель df0d5649f8
Коммит 314227dd27
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -6,7 +6,12 @@
#include "napa/log.h"
#if defined(DEBUG_NAPA)
#define NAPA_DEBUG(section, format, ...) LOG_DEBUG(section, format, ##__VA_ARGS__)
#define NAPA_DEBUG(section, format, ...) LOG_DEBUG(section, format, ##__VA_ARGS__)
#else
#define NAPA_DEBUG
// Do nothing without generating any "unreferenced variable" warnings.
#define NAPA_DEBUG(section, format, ...) ((void)0)
#endif