diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-08-03 21:21:56 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-08-03 21:21:56 +0100 |
| commit | 49d337c83039715fd3100f6ec8a88dff80c08c4b (patch) | |
| tree | f129486fb80a44dc106a277a576438d0ce344d8c /core/raw.odin | |
| parent | 294092979e89faa67dc77d2261e9ddafc18b0d0d (diff) | |
v0.6.2; Use Ada_Case for typesv0.6.2
Diffstat (limited to 'core/raw.odin')
| -rw-r--r-- | core/raw.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/raw.odin b/core/raw.odin index b681cbf40..76d284b94 100644 --- a/core/raw.odin +++ b/core/raw.odin @@ -1,6 +1,6 @@ Any :: struct #ordered { data: rawptr; - type_info: ^TypeInfo; + type_info: ^Type_Info; }; String :: struct #ordered { @@ -14,15 +14,15 @@ Slice :: struct #ordered { cap: int; }; -DynamicArray :: struct #ordered { +Dynamic_Array :: struct #ordered { data: rawptr; len: int; cap: int; allocator: Allocator; }; -DynamicMap :: struct #ordered { +Map :: struct #ordered { hashes: [dynamic]int; - entries: DynamicArray; + entries: Dynamic_Array; }; |