mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fix unused variable error
This commit is contained in:
parent
996db08210
commit
4ac321504d
1 changed files with 1 additions and 0 deletions
|
@ -293,6 +293,7 @@ int luau_load(lua_State* L, const char* chunkname, const char* data, size_t size
|
||||||
float y = read<float>(data, size, offset);
|
float y = read<float>(data, size, offset);
|
||||||
float z = read<float>(data, size, offset);
|
float z = read<float>(data, size, offset);
|
||||||
float w = read<float>(data, size, offset);
|
float w = read<float>(data, size, offset);
|
||||||
|
(void)w;
|
||||||
setvvalue(&p->k[j], x, y, z, w);
|
setvvalue(&p->k[j], x, y, z, w);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue