mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Issue #263 - Fix compiler warning
This commit is contained in:
parent
bab0f708dd
commit
c4a4f45527
1 changed files with 1 additions and 1 deletions
|
@ -525,7 +525,7 @@ typedef uint32_t char_type;
|
||||||
/**
|
/**
|
||||||
* Is the given object an object (non-immediate) type?
|
* Is the given object an object (non-immediate) type?
|
||||||
*/
|
*/
|
||||||
#define is_object_type(x) (x && !is_value_type(x))
|
#define is_object_type(x) ((x != NULL) && !is_value_type(x))
|
||||||
|
|
||||||
/**@}*/
|
/**@}*/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue