diff options
| author | gingerBill <bill@gingerbill.org> | 2017-12-17 14:53:40 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-12-17 14:53:40 +0000 |
| commit | 30530d058ca22eea3dcb0401a6bd6d288deb3ce0 (patch) | |
| tree | 47193c49795d4b42cf096938df6fc08f75bd0ea8 /core/fmt.odin | |
| parent | 436928d06a8bf38b5ee4b188169e02a609d8d955 (diff) | |
Remove `struct #ordered`
Diffstat (limited to 'core/fmt.odin')
| -rw-r--r-- | core/fmt.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fmt.odin b/core/fmt.odin index 3da0c55eb..93ada4809 100644 --- a/core/fmt.odin +++ b/core/fmt.odin @@ -253,7 +253,6 @@ write_type :: proc(buf: ^String_Buffer, ti: ^Type_Info) { case Type_Info_Struct: write_string(buf, "struct "); if info.is_packed do write_string(buf, "#packed "); - if info.is_ordered do write_string(buf, "#ordered "); if info.is_raw_union do write_string(buf, "#raw_union "); if info.custom_align { write_string(buf, "#align "); |