table: Avoid initializer warnings with GCC 4.9.
[pspp] / src / output / table.h
index b2c194367f6979df381da49f602958d4b19b5fec..40cae3a22cabaf56e6dbcafc3d07dc83e75262d0 100644 (file)
@@ -65,7 +65,7 @@ struct cell_color
     uint8_t alpha, r, g, b;
   };
 
-#define CELL_COLOR(r, g, b) (struct cell_color) { 255, r, g, b }
+#define CELL_COLOR(r, g, b) { 255, r, g, b }
 #define CELL_COLOR_BLACK CELL_COLOR (0, 0, 0)
 #define CELL_COLOR_WHITE CELL_COLOR (255, 255, 255)
 
@@ -171,7 +171,6 @@ void area_style_free (struct area_style *);
 enum
   {
     TAB_NONE = 0,
-    TAB_EMPH       = 1 << 0,    /* Emphasize cell contents. */
     TAB_FIX        = 1 << 1,    /* Use fixed font. */
     TAB_MARKUP     = 1 << 2,    /* Text contains Pango markup. */
     TAB_NUMERIC    = 1 << 3,    /* Cell contents are numeric. */
@@ -271,12 +270,6 @@ void table_set_hb (struct table *, int hb);
 
 /* Simple kinds of tables. */
 struct table *table_from_string (enum table_halign, const char *);
-struct table *table_from_variables (unsigned int options,
-                                    struct variable **, size_t);
-struct table *table_from_casereader (const struct casereader *,
-                                     size_t column,
-                                     const char *heading,
-                                     const struct fmt_spec *);
 
 /* Combining tables. */
 struct table *table_paste (struct table *, struct table *,