diff options
| author | gingerBill <bill@gingerbill.org> | 2019-10-06 18:13:15 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-10-06 18:13:15 +0100 |
| commit | 4e8a801b3504f402e06d6928e889b33c7872f88f (patch) | |
| tree | 1fd1c1484a1e4fa9bdf957a4a1ad3cbd324a4dc5 /core/runtime | |
| parent | e1b711b3b3476ecde0ed7e64e65fe4314a702b61 (diff) | |
strings.split; strings.index; eprint* over print*_err;
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 022a84e9e..c401dbdf3 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -40,7 +40,7 @@ Type_Info_Enum_Value :: union { u8, u16, u32, u64, uint, uintptr, }; -Type_Info_Endianness :: enum u8 { +Platform_Endianness :: enum u8 { Platform = 0, Little = 1, Big = 2, @@ -48,7 +48,7 @@ Type_Info_Endianness :: enum u8 { // Variant Types Type_Info_Named :: struct {name: string, base: ^Type_Info}; -Type_Info_Integer :: struct {signed: bool, endianness: Type_Info_Endianness}; +Type_Info_Integer :: struct {signed: bool, endianness: Platform_Endianness}; Type_Info_Rune :: struct {}; Type_Info_Float :: struct {}; Type_Info_Complex :: struct {}; |