indent with tabs not spaces

This commit is contained in:
Beau McCartney
2024-10-08 19:08:13 -06:00
parent 41c717de3f
commit b0ff41e673
+7 -7
View File
@@ -488,9 +488,9 @@ VM_FLAGS_SUPERPAGE_NONE :: VM_Flags{} /* no superpages, if all bits are 0 */
*/ */
VM_Prot :: enum vm_prot_t { VM_Prot :: enum vm_prot_t {
Read, Read,
Write, Write,
Execute, Execute,
} }
VM_Prot_Flags :: distinct bit_set[VM_Prot; vm_prot_t] VM_Prot_Flags :: distinct bit_set[VM_Prot; vm_prot_t]
@@ -504,10 +504,10 @@ VM_PROT_ALL :: VM_Prot_Flags{.Read, .Write, .Execute}
*/ */
VM_Inherit :: enum vm_inherit_t { VM_Inherit :: enum vm_inherit_t {
Share, Share,
Copy, Copy,
None, None,
Donate_Copy, Donate_Copy,
} }
VM_INHERIT_DEFAULT :: VM_Inherit.Copy VM_INHERIT_DEFAULT :: VM_Inherit.Copy