1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Fixed a minor compiler warning.

This commit is contained in:
jules 2015-04-27 11:23:04 +01:00
parent 06f279856c
commit 68fa0eaa19

View file

@ -426,9 +426,8 @@ struct VBRTagData
if (flags & 4)
{
if (toc != nullptr)
for (int i = 0; i < 100; ++i)
toc[i] = data[i];
for (int i = 0; i < 100; ++i)
toc[i] = data[i];
data += 100;
}