Closed Tetralux closed 2 months ago
core:fmt prints pointers to structs as &StructName{ ... } but bit_fields are currently printed the same as rawptrs (0xAABBCCDDEEFF only).
&StructName{ ... }
bit_field
0xAABBCCDDEEFF
This commit changes that so they behave the same as structs and unions.
core:fmt prints pointers to structs as
&StructName{ ... }
butbit_field
s are currently printed the same as rawptrs (0xAABBCCDDEEFF
only).This commit changes that so they behave the same as structs and unions.