From 460a35cbcb33fbc56f5a658b96a793b9bb8963e9 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 28 Apr 2023 10:33:53 -0300 Subject: New type name 'uint' (unsigned int) --- lpvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lpvm.h') diff --git a/lpvm.h b/lpvm.h index 86114e0..a64d577 100644 --- a/lpvm.h +++ b/lpvm.h @@ -65,7 +65,7 @@ typedef union Instruction { #define utf_to(inst) (((inst)->i.aux2.key << 8) | (inst)->i.aux1) -int charinset (const Instruction *i, const byte *buff, unsigned int c); +int charinset (const Instruction *i, const byte *buff, uint c); void printpatt (Instruction *p, int n); const char *match (lua_State *L, const char *o, const char *s, const char *e, Instruction *op, Capture *capture, int ptop); -- cgit v1.2.3-55-g6feb