From 6a1438a0901b5d0d876a92751631a5acb187372a Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 12 Sep 2020 22:03:15 +0200 Subject: [PATCH] Percentiles: Remove unused static data --- src/math/percentiles.c | 11 ----------- src/math/percentiles.h | 3 --- 2 files changed, 14 deletions(-) diff --git a/src/math/percentiles.c b/src/math/percentiles.c index a55cfaf2bf..a387d3d4c2 100644 --- a/src/math/percentiles.c +++ b/src/math/percentiles.c @@ -31,17 +31,6 @@ #define _(msgid) gettext (msgid) #define N_(msgid) msgid -const char *const ptile_alg_desc[] = { - "", - N_("HAverage"), - N_("Weighted Average"), - N_("Rounded"), - N_("Empirical"), - N_("Empirical with averaging") -}; - - - double percentile_calculate (const struct percentile *ptl, enum pc_alg alg) { diff --git a/src/math/percentiles.h b/src/math/percentiles.h index ff46bea6dc..7af157b230 100644 --- a/src/math/percentiles.h +++ b/src/math/percentiles.h @@ -31,9 +31,6 @@ enum pc_alg { PC_AEMPIRICAL } ; -extern const char *const ptile_alg_desc[]; - - struct percentile { struct order_stats parent; -- 2.30.2