Browse Source

Whitespace.

tags/2021-05-28
jules 10 years ago
parent
commit
d117082fd8
2 changed files with 0 additions and 2 deletions
  1. +0
    -1
      modules/juce_audio_basics/effects/juce_FFT.cpp
  2. +0
    -1
      modules/juce_audio_basics/effects/juce_FFT.h

+ 0
- 1
modules/juce_audio_basics/effects/juce_FFT.cpp View File

@@ -22,7 +22,6 @@
==============================================================================
*/
// (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)
static FFT::Complex operator+ (FFT::Complex a, FFT::Complex b) noexcept { FFT::Complex c = { a.r + b.r, a.i + b.i }; return c; }


+ 0
- 1
modules/juce_audio_basics/effects/juce_FFT.h View File

@@ -22,7 +22,6 @@
==============================================================================
*/
/**
A very minimal FFT class.


Loading…
Cancel
Save