mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-30 13:47:13 +01:00
Problem: nullptr is a reserved keyword in C++0x
Solution: use NULL instead to avoid build failure with older compilers.
This commit is contained in:
@@ -51,7 +51,7 @@ zmq::udp_engine_t::udp_engine_t() :
|
||||
fd(-1),
|
||||
session(NULL),
|
||||
handle(NULL),
|
||||
address(nullptr),
|
||||
address(NULL),
|
||||
send_enabled(false),
|
||||
recv_enabled(false)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user