зеркало из https://github.com/Azure/c-logging.git
Add stdarg include here because I ran into a compiler error. (#229)
CLANG complained that va_list was used but not defined.
This commit is contained in:
Родитель
f4343a32a0
Коммит
8154eab45a
|
@ -4,6 +4,12 @@
|
|||
#ifndef LOG_SINK_IF_H
|
||||
#define LOG_SINK_IF_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
#include <cstdarg>
|
||||
#else
|
||||
#include <stdarg.h>
|
||||
#endif
|
||||
|
||||
#include "c_logging/log_context.h"
|
||||
#include "c_logging/log_level.h"
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче