Remove unused function (Wunused-function)

This commit is contained in:
David Robillard 2021-05-28 12:18:42 -04:00
parent 8d471e6761
commit 71a414b4b0
1 changed files with 0 additions and 5 deletions

View File

@ -249,11 +249,6 @@ from_dB(float gdb) {
return (exp(gdb/20.f*log(10.f)));
}
static inline float
to_dB(float g) {
return (20.f*log10(g));
}
static inline bool
is_eq(float a, float b, float small) {
return (fabsf(a - b) < small);