Skip to content

Commit

Permalink
Fix zmq version check (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon authored Mar 26, 2020
1 parent 4fad197 commit 0a5dfd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZmqLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void ZmqLogger::Log(string message)
// Create a scoped lock, allowing only a single thread to run the following code at one time
const GenericScopedLock<CriticalSection> lock(loggerCriticalSection);

#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(4, 3, 1)
#if ZMQ_VERSION > ZMQ_MAKE_VERSION(4, 3, 1)
// Send message over socket (ZeroMQ)
zmq::message_t reply(message);

Expand Down

0 comments on commit 0a5dfd9

Please sign in to comment.