mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Remove const& from strings loop
This commit is contained in:
parent
9918529641
commit
c224548781
1 changed files with 1 additions and 1 deletions
|
@ -1486,7 +1486,7 @@ struct Compiler
|
|||
|
||||
size_t stringsLeft = expr->strings.size;
|
||||
|
||||
for (AstArray<char> const& string : expr->strings)
|
||||
for (AstArray<char> string : expr->strings)
|
||||
{
|
||||
if (memchr(string.data, '%', string.size))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue