libzmq  master
ZeroMQ C++ Core Engine (LIBZMQ)
macros.hpp
Go to the documentation of this file.
1 
2 /******************************************************************************/
3 /* 0MQ Internal Use */
4 /******************************************************************************/
5 
6 #define LIBZMQ_UNUSED(object) (void)object
7 #define LIBZMQ_DELETE(p_object) {\
8  delete p_object; \
9  p_object = 0; \
10 }
11 
12 /******************************************************************************/