don't typedef socklen_t for _MSC_VER >= 1914

This commit is contained in:
Mark Andrews 2018-09-20 13:51:50 +10:00
parent 5cf8fc4bba
commit 0eda75fec0

View file

@ -36,7 +36,9 @@
#endif
#include <stdint.h>
#if _MSC_VER < 1914
typedef uint32_t socklen_t;
#endif
#endif