Return allocated variable in INIT()
This commit is contained in:
@@ -121,8 +121,9 @@
|
|||||||
/**
|
/**
|
||||||
* 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