Skip to content

Commit 12671d1

Browse files
committed
Use explicit '*' with auto for pointers
1 parent 907d7f8 commit 12671d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/lua.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ int Lua::getvars(lua_State *L) {
297297
variables::Variable::stringMatchResolveMulti(t, varname, &l);
298298

299299
lua_newtable(L);
300-
for (auto i : l) {
300+
for (auto* i : l) {
301301
lua_pushnumber(L, idx);
302302
lua_newtable(L);
303303

0 commit comments

Comments
 (0)