mirror of
https://github.com/zeromq/libzmq.git
synced 2025-02-11 02:31:32 +01:00
41f459e1dc
Solution: applied clang-format
14 lines
701 B
C++
14 lines
701 B
C++
|
|
/******************************************************************************/
|
|
/* 0MQ Internal Use */
|
|
/******************************************************************************/
|
|
|
|
#define LIBZMQ_UNUSED(object) (void) object
|
|
#define LIBZMQ_DELETE(p_object) \
|
|
{ \
|
|
delete p_object; \
|
|
p_object = 0; \
|
|
}
|
|
|
|
/******************************************************************************/
|