clean up includes

This commit is contained in:
2025-05-15 14:00:27 +02:00
parent f4f61a2fd4
commit 2b077a13a2
12 changed files with 14 additions and 8 deletions

View File

@@ -2,7 +2,6 @@
#include "../filter/chebyshev.h"
#include "../companding/ulaw.h"
#include <iostream>
namespace trnr {
@@ -130,7 +129,7 @@ private:
double wrap(double value, double max) {
while (value > max) {
value =- max;
value -= max;
}
return value;
}