Problem: precompiled.hpp ifdef'd for windows

Solution: include platform.hpp and include/zmq.h outside of ifdef
for windows, in order to be able to use it for internal definitions.
This commit is contained in:
Luca Boccassi 2016-05-02 19:37:54 +01:00
parent 464d3fd3f8
commit b469832409

View File

@ -138,10 +138,12 @@
#include <string>
#include <vector>
// 0MQ definitions and exported functions
#include "../include/zmq.h"
#endif // _MSC_VER
// 0MQ definitions and exported functions
#include "platform.hpp"
#include "../include/zmq.h"
#endif //ifndef __ZMQ_PRECOMPILED_HPP_INCLUDED__