aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-02-19 11:36:23 +0000
committergingerBill <bill@gingerbill.org>2021-02-19 11:36:23 +0000
commit595885d3db29bd3d611427877a52e574fe878a9e (patch)
tree26568552a5f384e6597e95e85559494839349cea /src/types.cpp
parentefdee0dafb2b7568242173cb4549aba32f6f9e75 (diff)
Remove `bit_field` in type info, runtime, and general core library
Diffstat (limited to 'src/types.cpp')
-rw-r--r--src/types.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/types.cpp b/src/types.cpp
index 7acb488e9..b1d69079b 100644
--- a/src/types.cpp
+++ b/src/types.cpp
@@ -357,7 +357,6 @@ enum Typeid_Kind : u8 {
Typeid_Union,
Typeid_Enum,
Typeid_Map,
- Typeid_Bit_Field,
Typeid_Bit_Set,
Typeid_Opaque,
Typeid_Simd_Vector,
@@ -633,7 +632,6 @@ gb_global Type *t_type_info_struct = nullptr;
gb_global Type *t_type_info_union = nullptr;
gb_global Type *t_type_info_enum = nullptr;
gb_global Type *t_type_info_map = nullptr;
-gb_global Type *t_type_info_bit_field = nullptr;
gb_global Type *t_type_info_bit_set = nullptr;
gb_global Type *t_type_info_opaque = nullptr;
gb_global Type *t_type_info_simd_vector = nullptr;
@@ -661,7 +659,6 @@ gb_global Type *t_type_info_struct_ptr = nullptr;
gb_global Type *t_type_info_union_ptr = nullptr;
gb_global Type *t_type_info_enum_ptr = nullptr;
gb_global Type *t_type_info_map_ptr = nullptr;
-gb_global Type *t_type_info_bit_field_ptr = nullptr;
gb_global Type *t_type_info_bit_set_ptr = nullptr;
gb_global Type *t_type_info_opaque_ptr = nullptr;
gb_global Type *t_type_info_simd_vector_ptr = nullptr;