From 36e19e82e7ae735a387d6592ca4a133f48de6d97 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Wed, 12 Jun 2024 17:39:46 +0200 Subject: [PATCH] FHT: Remove void --- src/analyzer/fht.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analyzer/fht.cpp b/src/analyzer/fht.cpp index c73ec273c..ed852f76e 100644 --- a/src/analyzer/fht.cpp +++ b/src/analyzer/fht.cpp @@ -47,7 +47,7 @@ float *FHT::buf_() { return buf_vector_.data(); } float *FHT::tab_() { return tab_vector_.data(); } int *FHT::log_() { return log_vector_.data(); } -void FHT::makeCasTable(void) { +void FHT::makeCasTable() { float *costab = tab_(); float *sintab = tab_() + num_ / 2 + 1;