Implement wide string literal concatenation (with normal string literals, too).
[cparser] / type_t.h
index a31aa5d..f745e4f 100644 (file)
--- a/type_t.h
+++ b/type_t.h
@@ -73,6 +73,7 @@ typedef unsigned int type_qualifiers_t;
 struct type_base_t {
        type_kind_t       kind;
        type_qualifiers_t qualifiers;
+       source_position_t source_position;
 
        ir_type          *firm_type;
 };