diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-07-30 23:14:29 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-07-30 23:14:29 +0100 |
| commit | 7057fc8dfc960ad3e7ea4f76deeaafd0cdcf4cf6 (patch) | |
| tree | 7f1e406f8d6fb16bf97b68251fc8524cfcd833cf /base/runtime | |
| parent | aa6a7498045788b318436db22e44b763799a4c22 (diff) | |
Remove the semantics of `#no_copy`, keep the grammar
Diffstat (limited to 'base/runtime')
| -rw-r--r-- | base/runtime/core.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/runtime/core.odin b/base/runtime/core.odin index 090d1a65b..baecb4146 100644 --- a/base/runtime/core.odin +++ b/base/runtime/core.odin @@ -115,7 +115,7 @@ Type_Info_Struct_Flags :: distinct bit_set[Type_Info_Struct_Flag; u8] Type_Info_Struct_Flag :: enum u8 { packed = 0, raw_union = 1, - no_copy = 2, + _ = 2, align = 3, } |