Fix GCC 4.3 warnings about parameters of incomplete type.
authorBen Pfaff <blp@gnu.org>
Sun, 5 Oct 2008 21:53:00 +0000 (14:53 -0700)
committerBen Pfaff <blp@gnu.org>
Sun, 12 Oct 2008 03:56:32 +0000 (20:56 -0700)
src/data/data-in.h
src/data/format-guesser.h
src/data/settings.h
src/language/data-io/data-parser.h
src/math/order-stats.h
src/ui/gui/helper.h
src/ui/syntax-gen.h

index 7d4df5adccb9310d6964e5a544a3880ef5238968..3a8d67cc22f66b28eb0bed54126e5a3255449064 100644 (file)
@@ -22,7 +22,7 @@
 #include <libpspp/float-format.h>
 #include <libpspp/integer-format.h>
 #include <libpspp/str.h>
-
+#include <data/format.h>
 
 enum fmt_type;
 union value;
index 48a27876a76c16352cbce667000fbfe532bd4b62..23249f6a85c10f261e04a6efd20551c926357e9d 100644 (file)
@@ -17,8 +17,8 @@
 #ifndef FORMAT_GUESSER_H
 #define FORMAT_GUESSER_H 1
 
+#include <libpspp/str.h>
 struct fmt_spec;
-struct substring;
 
 struct fmt_guesser *fmt_guesser_create (void);
 void fmt_guesser_destroy (struct fmt_guesser *);
index e39a63a0fefc766546362d7e1bb412454539f10f..2f2bbe99b46edd2ad28e5bebb75015581b3267f9 100644 (file)
@@ -19,6 +19,9 @@
 
 #include <stdbool.h>
 #include <stddef.h>
+#include <data/format.h>
+#include <libpspp/float-format.h>
+#include <libpspp/integer-format.h>
 
 struct settings;
 
index 4976d3f42e69712ff52bc82f38d6432b5f5f3359..b250e91bb53d2d7cf7b628fd6f41cb8113f7f30b 100644 (file)
@@ -21,6 +21,7 @@
 
 #include <stdbool.h>
 #include <data/case.h>
+#include <libpspp/str.h>
 
 struct dataset;
 struct dfm_reader;
index cea50ed80d14b34976beccc3055d656fdb8ce2f8..07da284aa26af9faa95df9872d00163092471686 100644 (file)
@@ -18,6 +18,7 @@
 #define __ORDER_STATS_H__
 
 #include <stddef.h>
+#include <data/missing-values.h>
 #include <math/statistic.h>
 
 struct casereader;
index 3b9f03703ea7c85b367b057f47fa63757f4dc218..1a620908309c3f93450dd4b90178ec1ca0001785 100644 (file)
@@ -20,6 +20,7 @@
 
 #include "relocatable.h"
 
+#include <data/format.h>
 #include <data/value.h>
 
 #include <gtk/gtk.h>
index 501f1f37ffb2b2a61a919cd140ee9d23361cfca9..244e528b0748cd349c1481d3856aff5990c98e8a 100644 (file)
@@ -22,6 +22,7 @@
 #include <stdarg.h>
 #include <stddef.h>
 #include <libpspp/compiler.h>
+#include <libpspp/str.h>
 
 struct fmt_spec;
 struct substring;