|
|
@@ -22,7 +22,6 @@ |
|
|
==============================================================================
|
|
|
==============================================================================
|
|
|
*/
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// (For the moment, we'll implement a few local operators for this complex class - one
|
|
|
// (For the moment, we'll implement a few local operators for this complex class - one
|
|
|
// day we'll probably either have a juce complex class, or use the C++11 one)
|
|
|
// day we'll probably either have a juce complex class, or use the C++11 one)
|
|
|
static FFT::Complex operator+ (FFT::Complex a, FFT::Complex b) noexcept { FFT::Complex c = { a.r + b.r, a.i + b.i }; return c; }
|
|
|
static FFT::Complex operator+ (FFT::Complex a, FFT::Complex b) noexcept { FFT::Complex c = { a.r + b.r, a.i + b.i }; return c; }
|
|
|
|