mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-05-05 16:54:50 +02:00

There are two overloads of `poll` - one that has `-1` as the default value for the timeout, and one that does not have the timeout argument (which calls the previous one with -1 for the timeout). This makes it ambiguous for the compiler when `poll` is called without the timeout. This patch removes the second overload as it is not needed since the first one already covers the same case.
This is C++ binding for 0MQ The contribution policy is at: http://rfc.zeromq.org/spec:22 Build steps: 1) Build libzmq via cmake. This does an out of source build and installs the build files download and unzip the lib, cd to directory mkdir build cd build cmake .. sudo make -j4 install 2) Build cppzmq via cmake. This does an out of source build and installs the build files download and unzip the lib, cd to directory mkdir build cd build cmake .. sudo make -j4 install Using this: A cmake find package scripts is provided for you to easily include this library. Add these lines in your CMakeLists.txt to include the headers and library files of cpp zmq (which will also include libzmq for you). #find cppzmq wrapper, installed by make of cppzmq find_package(cppzmq) if(cppzmq_FOUND) include_directories(${cppzmq_INCLUDE_DIR}) target_link_libraries(*Your Project Name* ${cppzmq_LIBRARY}) endif()
Description
Languages
C++
96.2%
CMake
3.5%
Shell
0.3%