From 71a414b4b00d114f3d0e91d1776f4a33dba41a38 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 28 May 2021 12:18:42 -0400 Subject: [PATCH] Remove unused function (Wunused-function) --- libs/plugins/a-delay.lv2/a-delay.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libs/plugins/a-delay.lv2/a-delay.c b/libs/plugins/a-delay.lv2/a-delay.c index f45b5b50e6..777abf4560 100644 --- a/libs/plugins/a-delay.lv2/a-delay.c +++ b/libs/plugins/a-delay.lv2/a-delay.c @@ -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);