X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=token_t.h;h=762f143a47885a94ff061eeb165cfb1df976b66d;hb=23e9b60ddf7642b66def2665bb799dc12d464cee;hp=0cc82d324d861d326a5dda4babd657ef6ea82e6a;hpb=114084b56a92d4bfad09d5ff0c6f4381434cce59;p=cparser diff --git a/token_t.h b/token_t.h index 0cc82d3..762f143 100644 --- a/token_t.h +++ b/token_t.h @@ -4,6 +4,7 @@ #include #include "symbol.h" #include "symbol_table.h" +#include "type.h" typedef enum { #define T(x,str,val) T_##x val, @@ -38,6 +39,7 @@ typedef struct { long double floatvalue; const char *string; } v; + type_t *datatype; source_position_t source_position; } token_t;