There is a line in juce::dsp::FFT that says
if(size == 1)
return;
that makes sense! but i think it should be more of a jassert thing. because the developer who implements the object probably wants to be informed that the FFT object thinks it should have no size.
(there could also be a jassert in the constructor if the developer accidently entered the desired FFT size instead of the order)
