mirror of
https://github.com/redis/redis.git
synced 2026-05-28 04:02:46 -04:00
Fix Lua compile warning (#10805)
Apparently, GCC 11.2.0 has a new fancy warning for misleading indentations. It prints a warning when BRET(b) is on the same line as the loop.
This commit is contained in:
parent
df55861838
commit
c81b5e5594
1 changed files with 2 additions and 1 deletions
3
deps/lua/src/lua_bit.c
vendored
3
deps/lua/src/lua_bit.c
vendored
|
|
@ -98,7 +98,8 @@ static int bit_bnot(lua_State *L) { BRET(~barg(L, 1)) }
|
|||
|
||||
#define BIT_OP(func, opr) \
|
||||
static int func(lua_State *L) { int i; UBits b = barg(L, 1); \
|
||||
for (i = lua_gettop(L); i > 1; i--) b opr barg(L, i); BRET(b) }
|
||||
for (i = lua_gettop(L); i > 1; i--) b opr barg(L, i); \
|
||||
BRET(b) }
|
||||
BIT_OP(bit_band, &=)
|
||||
BIT_OP(bit_bor, |=)
|
||||
BIT_OP(bit_bxor, ^=)
|
||||
|
|
|
|||
Loading…
Reference in a new issue