mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-06 12:46:35 +02:00
Bugfix
This commit is contained in:
parent
a37b640737
commit
df44178302
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ typedef long tag_type;
|
|||
#define obj_obj2char(x) (char)((long)(x)>>2)
|
||||
#define obj_char2obj(c) ((void *)((((unsigned long)c)<<2) | 2))
|
||||
|
||||
#define is_value_type(x) ((unsigned long)(x) | (unsigned long)3)
|
||||
#define is_value_type(x) ((unsigned long)(x) & (unsigned long)3)
|
||||
#define is_object_type(x) (x && !is_value_type(x))
|
||||
|
||||
/* Define function type. */
|
||||
|
|
Loading…
Add table
Reference in a new issue