Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/11/2007, 09:56
jazzz_oks
 
Fecha de Ingreso: noviembre-2007
Mensajes: 21
Antigüedad: 17 años, 1 mes
Puntos: 0
Error de sintaxis que no veo en enum

Buenas, al compilar me da el siguiente error:
In file included from traductor.c:3:
y.tab.c:59: error: syntax error before numeric constant

y en la correspondiente linea 59 de y.tab.c me aparece:

#ifndef YYTOKENTYPE
#define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
IDENTIFICADOR = 1, //ESTA ES LA 59
ES = 3,
PAREN_OPEN = 38,
PAREN_CLOSED = 39
};
#endif

Muchas gracias de nuevo por vuestra ayuda.