mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
variable.c: fix clang integer warning.
This commit is contained in:
+1
-1
@@ -19,7 +19,7 @@ typedef struct iv_tbl {
|
||||
} iv_tbl;
|
||||
|
||||
#define IV_EMPTY 0
|
||||
#define IV_DELETED (1<<31)
|
||||
#define IV_DELETED (1UL<<31)
|
||||
#define IV_KEY_P(k) (((k)&~((uint32_t)IV_DELETED))!=0)
|
||||
|
||||
/* Creates the instance variable table. */
|
||||
|
||||
Reference in New Issue
Block a user