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:
David Robson 2024-11-04 19:13:19 -08:00 коммит произвёл GitHub
Родитель f4343a32a0
Коммит 8154eab45a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -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"