From 021e548db7de3729d30728909f54ffbb654c10aa Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 26 Sep 2019 10:56:07 +0300 Subject: [PATCH] - fixed compilation with Apple Clang as well src/utility/basictypes.h:39:23: error: unknown type name 'size_t'; did you mean 'time_t'? --- src/utility/basictypes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utility/basictypes.h b/src/utility/basictypes.h index 5243d8689..989b6a764 100644 --- a/src/utility/basictypes.h +++ b/src/utility/basictypes.h @@ -1,6 +1,7 @@ #ifndef __BASICTYPES_H #define __BASICTYPES_H +#include #include typedef uint32_t BITFIELD;