Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
fix logic in ZMQ_CAN_DISCONNECT macro
Browse files Browse the repository at this point in the history
  • Loading branch information
mscdex committed Mar 8, 2013
1 parent 7dabf27 commit 6c694fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binding.cc
Expand Up @@ -37,7 +37,7 @@
#define snprintf _snprintf_s #define snprintf _snprintf_s
#endif #endif


#define ZMQ_CAN_DISCONNECT (ZMQ_VERSION_MAJOR == 3 and ZMQ_VERSION_MINOR >= 2) or ZMQ_VERSION_MAJOR > 3 #define ZMQ_CAN_DISCONNECT (ZMQ_VERSION_MAJOR == 3 && ZMQ_VERSION_MINOR >= 2) || ZMQ_VERSION_MAJOR > 3


using namespace v8; using namespace v8;
using namespace node; using namespace node;
Expand Down

0 comments on commit 6c694fd

Please sign in to comment.