0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 15:41:05 +08:00

Problem: polling_util.hpp missing sys/select.h include (#4283)

* Problem: polling_util.hpp missing sys/select.h include

Solution: include sys/select.h
This commit is contained in:
mjvankampen 2021-10-21 21:56:32 +02:00 committed by GitHub
parent b2ab09bf79
commit 36d6b5d923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,12 @@
#include <stdlib.h> #include <stdlib.h>
#include <vector> #include <vector>
#if defined ZMQ_HAVE_WINDOWS
#include <winsock.h>
#else
#include <sys/select.h>
#endif
#include "macros.hpp" #include "macros.hpp"
#include "stdint.hpp" #include "stdint.hpp"
#include "platform.hpp" #include "platform.hpp"