Suppress generation of comb_filter_const_c when not used; avoid warning.
diff --git a/celt/celt.c b/celt/celt.c
index 40c62ce..b121c51 100644
--- a/celt/celt.c
+++ b/celt/celt.c
@@ -89,6 +89,7 @@
    return ret;
 }
 
+#if !defined(OVERRIDE_COMB_FILTER_CONST) || defined(NON_STATIC_COMB_FILTER_CONST_C)
 /* This version should be faster on ARM */
 #ifdef OPUS_ARM_ASM
 #ifndef NON_STATIC_COMB_FILTER_CONST_C
@@ -176,6 +177,7 @@
 
 }
 #endif
+#endif
 
 #ifndef OVERRIDE_comb_filter
 void comb_filter(opus_val32 *y, opus_val32 *x, int T0, int T1, int N,