1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-01 03:10:06 +00:00

Updated VC6 project. Removed some unsafe templated casts from MemoryBlock and HeapBlock.

This commit is contained in:
Julian Storer 2010-02-25 18:31:06 +00:00
parent 84a8695561
commit bc5a7a6b7e
44 changed files with 438 additions and 253 deletions

View file

@ -395,7 +395,7 @@ private:
if (callback != 0)
{
callback->audioDeviceIOCallback ((const float**) inChans, numActiveInChans,
callback->audioDeviceIOCallback (const_cast<const float**> (inChans.getData()), numActiveInChans,
outChans, numActiveOutChans, numSamples);
}
else