Closed pachadotdev closed 3 months ago
We can probably fix the warning by using
int i
instead ofsize_t i
in the for loop.
I edited that!
it is practically the same, the number of languages will never create an integer overflow and that the performance impact is zero
I meant that that way you can keep the langs.size()
in the loop and keep the diff very minimal.
I meant that that way you can keep the
langs.size()
in the loop and keep the diff very minimal.
yes, my PR saves 1 duplicated computation
I meant that that way you can keep the
langs.size()
in the loop and keep the diff very minimal.
done
Can you fix the merge conflict
Can you fix the merge conflict
done, thx!
We can probably fix the warning by using
int i
instead ofsize_t i
in the for loop.