summaryrefslogtreecommitdiffhomepage
path: root/fft.cpp
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2019-02-16 18:25:24 +0100
committerRoland Stigge <stigge@antcom.de>2019-02-16 18:25:24 +0100
commitfe8b95b29e69946c81e65dfb7fd838c2922c5c00 (patch)
tree7fd80e9fbb94b309241d8e6aa6a1e896ae3e949a /fft.cpp
parentba9179c7991eeaf1b8d59a0db3975f049b2735b7 (diff)
Cleanup
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) {