Remove use of .no_copy

This commit is contained in:
gingerBill
2025-07-30 23:19:14 +01:00
parent 6a10cfdc30
commit 9b8223dd69
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -403,7 +403,7 @@ print_type :: #force_no_inline proc "contextless" (ti: ^Type_Info) {
print_string("struct ")
if .packed in info.flags { print_string("#packed ") }
if .raw_union in info.flags { print_string("#raw_union ") }
if .no_copy in info.flags { print_string("#no_copy ") }
// if .no_copy in info.flags { print_string("#no_copy ") }
if .align in info.flags {
print_string("#align(")
print_u64(u64(ti.align))