1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Fixes for BitArray and WavAudioFormat.

This commit is contained in:
Julian Storer 2010-01-25 13:38:54 +00:00
parent 6bf8b51c5a
commit 30c9e939d1
3 changed files with 4 additions and 2 deletions

View file

@ -938,7 +938,7 @@ void BitArray::loadFromMemoryBlock (const MemoryBlock& data) throw()
{
clear();
for (size_t i = data.getSize(); --i >= 0;)
for (int i = (int) data.getSize(); --i >= 0;)
this->setBitRangeAsInt ((int) (i << 3), 8, data [i]);
}