FHT: Remove void

This commit is contained in:
Jonas Kvinge 2024-06-12 17:39:46 +02:00
parent c52a802b83
commit 36e19e82e7

View File

@ -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;