Remove unneeded dependency on variable.h.
authorBen Pfaff <blp@gnu.org>
Sat, 6 May 2006 23:14:31 +0000 (23:14 +0000)
committerBen Pfaff <blp@gnu.org>
Sat, 6 May 2006 23:14:31 +0000 (23:14 +0000)
src/data/ChangeLog
src/data/value-labels.c
src/data/value-labels.h

index 8d675bcdb9a366bffb507778b1f7fefe1cf27683..0c6215d0b917ea2c2c863bdf6cf7dcf14ce56038 100644 (file)
@@ -1,3 +1,7 @@
+Sat May  6 16:14:08 2006  Ben Pfaff  <blp@gnu.org>
+
+       * value-labels.h: Remove unneeded dependency on variable.h.
+
 Sat May  6 15:58:36 2006  Ben Pfaff  <blp@gnu.org>
 
        Get rid of `char *c' member in union value, for cleanliness.
index 1e83463c2aace69581aeecc494dfec8d34ad6e51..594518e07758611882ef428c519543a2f4af0fab 100644 (file)
    02110-1301, USA. */
 
 #include <config.h>
+
 #include "value-labels.h"
-#include <libpspp/message.h>
+
 #include <stdlib.h>
+
+#include <data/variable.h>
 #include <libpspp/alloc.h>
 #include <libpspp/compiler.h>
 #include <libpspp/hash.h>
+#include <libpspp/message.h>
 #include <libpspp/str.h>
 
 static hsh_compare_func compare_int_val_lab;
index ad21a6d28ae3a1e4044f7c110da555cf1a8c1375..595d101a5a04aa066205f2d33ce13406bbe16708 100644 (file)
 #define VAL_LABS_H 1
 
 #include <stddef.h>
-#include "variable.h"
+
+#include <data/value.h>
 
 struct val_labs;
+struct variable;
 
 struct val_lab 
   {