diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-05 13:44:14 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-11-05 13:44:14 +0000 |
| commit | fc2cb8fb39c510bf6d91a7dcef415840a843cd9c (patch) | |
| tree | 953c21f29aa9a57c1c25071251f5f3fc3c9478b9 /base/runtime | |
| parent | c937d38db2b31b885256b9aac0d606032f6c5343 (diff) | |
Remove `#no_copy`
Diffstat (limited to 'base/runtime')
| -rw-r--r-- | base/runtime/wasm_allocator.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/runtime/wasm_allocator.odin b/base/runtime/wasm_allocator.odin index 325b1d4fa..d5fd71ba6 100644 --- a/base/runtime/wasm_allocator.odin +++ b/base/runtime/wasm_allocator.odin @@ -43,7 +43,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -WASM_Allocator :: struct #no_copy { +WASM_Allocator :: struct { // The minimum alignment of allocations. alignment: uint, // A region that contains as payload a single forward linked list of pointers to |