From fe8b95b29e69946c81e65dfb7fd838c2922c5c00 Mon Sep 17 00:00:00 2001 From: Roland Stigge Date: Sat, 16 Feb 2019 18:25:24 +0100 Subject: Cleanup --- fft.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'fft.cpp') 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 RIT::magnitudes(std::vector>& v) { -- cgit v1.2.3