ANSI C++ says that typedefs must specify a type (i.e. can't just
default 'int'). One here didn't.
This commit is contained in:
parent
3403044148
commit
6ad6202b57
|
@ -34,7 +34,7 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
static void usage();
|
||||
static void convert_font(const font_params &, FILE *, FILE *);
|
||||
|
||||
typedef font_params::*param_t;
|
||||
typedef int font_params::*param_t;
|
||||
|
||||
static struct {
|
||||
const char *name;
|
||||
|
|
Loading…
Reference in New Issue