mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-26 23:01:04 +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:
parent
b2ab09bf79
commit
36d6b5d923
@ -33,6 +33,12 @@
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
|
||||
#if defined ZMQ_HAVE_WINDOWS
|
||||
#include <winsock.h>
|
||||
#else
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
|
||||
#include "macros.hpp"
|
||||
#include "stdint.hpp"
|
||||
#include "platform.hpp"
|
||||
|
Loading…
x
Reference in New Issue
Block a user