Remove dead assignment and the stale assert, which checked for the dead value, with it.
[cparser] / types.h
diff --git a/types.h b/types.h
index cb03f88..285974e 100644 (file)
--- a/types.h
+++ b/types.h
@@ -70,6 +70,8 @@ extern type_t *type_wchar_t;
 extern type_t *type_const_wchar_t;
 extern type_t *type_wchar_ptr_t;
 extern type_t *type_wint_t;
+extern type_t *type_int32_t;
+extern type_t *type_int64_t;
 
 extern type_t *type_intmax_t_ptr;
 extern type_t *type_ptrdiff_t_ptr;
@@ -104,6 +106,6 @@ extern type_t *type_unsigned_int64;
 extern type_t *type_unsigned_int128;
 
 void init_basic_types(void);
-void init_builtin_types(void);
+void init_wchar_types(type_t *base);
 
 #endif