[libr] Fix missing alias meta name

This commit is contained in:
Bill Currie 2020-04-04 15:46:37 +09:00
parent e80344c58e
commit d88c1e2f40
2 changed files with 3 additions and 2 deletions

View file

@ -90,7 +90,7 @@ typedef struct qfot_type_encodings_s {
int size;
} qfot_type_encodings_t;
@extern string ty_meta_name[6];
@extern string ty_meta_name[7];
@extern string pr_type_name[ev_type_count];
#endif

View file

@ -1,13 +1,14 @@
#include <runtime.h>
#include <types.h>
string ty_meta_name[6] = {
string ty_meta_name[7] = {
"basic",
"struct",
"union",
"enum",
"array",
"class",
"alias",
};
string pr_type_name[ev_type_count] = {