diff options
| author | gingerBill <bill@gingerbill.org> | 2023-04-15 15:36:21 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-04-15 15:37:32 +0100 |
| commit | 5da76ae34bac2f54b1bda5528cf49c0551e88bba (patch) | |
| tree | 78a6189f351ceb8dd070c2e453c4b0462d532235 /core/runtime | |
| parent | b7b5043aea792839226baf9e6d0ca54b73dac9a5 (diff) | |
Add `struct #no_copy`
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 040590b4a..9939bfc5c 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -119,6 +119,7 @@ Type_Info_Struct :: struct { tags: []string, is_packed: bool, is_raw_union: bool, + is_no_copy: bool, custom_align: bool, equal: Equal_Proc, // set only when the struct has .Comparable set but does not have .Simple_Compare set |