summaryrefslogtreecommitdiffhomepage
path: root/fft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fft.cpp')
-rw-r--r--fft.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/fft.cpp b/fft.cpp
index 29fd405..42b0acf 100644
--- a/fft.cpp
+++ b/fft.cpp
@@ -18,7 +18,6 @@ namespace { // Helper functions
bool is_power_of_two(unsigned int n) {
return n != 0 && (n & (n - 1)) == 0;
}
-
}
std::vector<double> RIT::magnitudes(std::vector<std::complex<double>>& v) {