mirror of
https://github.com/zeromq/libzmq.git
synced 2025-02-03 07:32:56 +01:00
33419425eb
Solution: Move the macros to a private header.
13 lines
450 B
C++
13 lines
450 B
C++
|
|
/******************************************************************************/
|
|
/* 0MQ Internal Use */
|
|
/******************************************************************************/
|
|
|
|
#define LIBZMQ_UNUSED(object) (void)object
|
|
#define LIBZMQ_DELETE(p_object) {\
|
|
delete p_object; \
|
|
p_object = 0; \
|
|
}
|
|
|
|
/******************************************************************************/
|