math: Avoid unneeded extra allocations for fixed-size data structures.
[pspp] / src / math / trimmed-mean.h
index baa84bc24e23792e9d53305c0f027426e2622367..8803a127bc203b8e1acc0e2978a0bf446f371405 100644 (file)
@@ -32,6 +32,8 @@ struct trimmed_mean
 
   double w;
   double tail;
+
+  struct k k[2];
 };
 
 struct trimmed_mean * trimmed_mean_create (double W, double c_min);