diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 5d0f2cca..0f6e92ca 100644 --- a/src/common.h +++ b/src/common.h @@ -219,6 +219,7 @@ enum class Type : int32_t { Void = -0x40, // 0x40 ___ = Void, // Convenient for the opcode table in opcode.h Any = 0, // Not actually specified, but useful for type-checking + Nullref = 1, // Not actually specified, but useful for anyref type-checking }; typedef std::vector<Type> TypeVector; |