diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-02-27 16:25:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-27 16:25:47 +0000 |
| commit | a06bde729bc92fe7f39ff79de1b9319bbf2c2bf6 (patch) | |
| tree | 555bfb2d3edbb69e27d3d8304d08faefac344bcf /src/types.cpp | |
| parent | cba8cb2201cfb321dd627fb1c67a5a61267465ea (diff) | |
| parent | 5107bdc06b7c1c8d02caef3e270e904218d82911 (diff) | |
Merge pull request #3234 from odin-lang/rtti-table-layout
Change `runtime.type_table` layout to allow RTTI to be constantly initialized
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp index 90cb130b6..efe7d3f6f 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -365,6 +365,9 @@ enum Typeid_Kind : u8 { Typeid_Matrix, Typeid_SoaPointer, Typeid_Bit_Field, + + Typeid__COUNT + }; // IMPORTANT NOTE(bill): This must match the same as the in core.odin |