From e6f243323e9fbbe8442d6dfd47b2d935fb380875 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 23 Feb 2020 22:26:09 +0900 Subject: [PATCH] Fix type of class in qfo type encodings --- include/QF/pr_type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QF/pr_type.h b/include/QF/pr_type.h index b2ea05060..39215840f 100644 --- a/include/QF/pr_type.h +++ b/include/QF/pr_type.h @@ -109,7 +109,7 @@ typedef struct qfot_type_s { qfot_func_t func; ///< ty_basic, ev_func qfot_struct_t strct; ///< ty_struct/ty_union/ty_enum qfot_array_t array; ///< ty_array - pointer_t class; ///< ty_class + string_t class; ///< ty_class qfot_alias_t alias; ///< ty_alias } t; } qfot_type_t;