- fixed compilation with Apple Clang as well

src/utility/basictypes.h:39:23: error: unknown type name 'size_t'; did you mean 'time_t'?
This commit is contained in:
alexey.lysiuk 2019-09-26 10:56:07 +03:00
parent cb444d3ae3
commit 021e548db7

View file

@ -1,6 +1,7 @@
#ifndef __BASICTYPES_H
#define __BASICTYPES_H
#include <stddef.h>
#include <stdint.h>
typedef uint32_t BITFIELD;