Remove unused return value of INIT(), making clang happy
This commit is contained in:
@@ -121,9 +121,8 @@
|
|||||||
/**
|
/**
|
||||||
* Object allocation/initialization macro, using designated initializer.
|
* Object allocation/initialization macro, using designated initializer.
|
||||||
*/
|
*/
|
||||||
#define INIT(this, ...) ({ (this) = malloc(sizeof(*(this))); \
|
#define INIT(this, ...) { (this) = malloc(sizeof(*(this))); \
|
||||||
*(this) = (typeof(*(this))){ __VA_ARGS__ }; \
|
*(this) = (typeof(*(this))){ __VA_ARGS__ }; }
|
||||||
(this); })
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method declaration/definition macro, providing private and public interface.
|
* Method declaration/definition macro, providing private and public interface.
|
||||||
|
|||||||
Reference in New Issue
Block a user