ast2firm: Factorise code to convert a value to its storage type.
[cparser] / symbol_t.h
index 49cf1e9..77718e6 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
 #include "token_t.h"
 
 struct symbol_t {
-       const char       *string;
-       unsigned short    ID;
-       unsigned short    pp_ID;
-       entity_t         *entity;
-       pp_definition_t  *pp_definition;
+       char const      *string;
+       unsigned short   ID;
+       pp_token_kind_t  pp_ID;
+       entity_t        *entity;
+       pp_definition_t *pp_definition;
 };
 
 #endif