Problem: patch version was not updated yet for 4.1.1

Solution: ZMQ_VERSION_PATCH is now 1
This commit is contained in:
Pieter Hintjens 2015-01-11 21:54:05 +01:00
parent c477182735
commit 79e3de21c3

View File

@ -31,7 +31,7 @@
/* Version macros for compile-time API version detection */
#define ZMQ_VERSION_MAJOR 4
#define ZMQ_VERSION_MINOR 1
#define ZMQ_VERSION_PATCH 0
#define ZMQ_VERSION_PATCH 1
#define ZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))