1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
--- liblog/logger.h.orig 2020-02-11 20:44:45 UTC +++ liblog/logger.h @@ -16,7 +16,13 @@ #pragma once +#ifdef __cplusplus +#include <atomic> +using std::atomic_int; +using std::atomic_uintptr_t; +#else #include <stdatomic.h> +#endif #include <sys/cdefs.h> #include <log/log.h>