Add #ifndef ZMQ_HAVE_WINDOWS guard around unistd.h include

This commit is contained in:
Nick Guiffrida 2016-09-30 21:30:04 -07:00
parent f3de534897
commit 1a2d58e4e7

View File

@ -31,7 +31,11 @@
#include "macros.hpp"
#include <string.h>
#ifndef ZMQ_HAVE_WINDOWS
#include <unistd.h>
#endif
#include <new>
#include <sstream>