histogram: Add missing #include.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 27 Nov 2012 05:15:02 +0000 (21:15 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 27 Nov 2012 05:15:02 +0000 (21:15 -0800)
Commit 02b9b37698eb "Disable asserts in histogram code except in
--testing-mode" added a use of settings_get_testing_mode() but didn't
include the proper header.  This fixes the problem.

src/math/histogram.c

index 51916a3d8baef7649f1920d6c2635c90a36824a1..b00067210f08676736d589660c9eb85f75216831 100644 (file)
@@ -21,6 +21,7 @@
 #include <gsl/gsl_histogram.h>
 #include <math.h>
 
+#include "data/settings.h"
 #include "libpspp/message.h"
 #include "libpspp/assertion.h"
 #include "libpspp/cast.h"