1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Noticed that we still had some template whitespace workarounds for older compilers, so tidied them up

This commit is contained in:
jules 2017-10-11 12:25:05 +01:00
parent 9b386b86ec
commit dd4230586f
26 changed files with 69 additions and 67 deletions

View file

@ -144,7 +144,7 @@ struct FFTUnitTest : public UnitTest
FFT fft ((int) order);
HeapBlock<float> inout (n << 1), reference (n << 1);
HeapBlock<Complex<float> > frequency (n);
HeapBlock<Complex<float>> frequency (n);
fillRandom (random, inout.getData(), n);
zeromem (reference.getData(), sizeof (float) * (n << 1));
@ -172,7 +172,7 @@ struct FFTUnitTest : public UnitTest
FFT fft ((int) order);
HeapBlock<Complex<float> > input (n), buffer (n), output (n), reference (n);
HeapBlock<Complex<float>> input (n), buffer (n), output (n), reference (n);
fillRandom (random, input.getData(), n);
performReferenceFourier (input.getData(), reference.getData(), n, false);