Percentiles: Remove unused static data
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 12 Sep 2020 20:03:15 +0000 (22:03 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 12 Sep 2020 20:03:15 +0000 (22:03 +0200)
src/math/percentiles.c
src/math/percentiles.h

index a55cfaf2bf2fdd4b165907451ab569a059a737e4..a387d3d4c270b1685984b6758e899f98f239a5f6 100644 (file)
 #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)
 {
index ff46bea6dce45611b88c621df4f7e86a30d97534..7af157b230e07adf4c68f01d401eb2ec7e133e45 100644 (file)
@@ -31,9 +31,6 @@ enum pc_alg {
   PC_AEMPIRICAL
 } ;
 
-extern  const char *const ptile_alg_desc[];
-
-
 struct percentile
 {
   struct order_stats parent;