commit 9b6817741924a014cb6a7906997fd4beef6801ab
parent 337dfea982e6f9542df61f7323679006fe2e92d9
Author: Drew DeVault <sir@cmpwn.com>
Date: Tue, 4 May 2021 15:59:29 -0400
hare::types: remove obsolete TODOs
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
2 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/hare/types/hash.ha b/hare/types/hash.ha
@@ -150,8 +150,6 @@ export fn hash(t: *_type) u32 = {
_type = _struct {
kind = struct_union::STRUCT,
fields = [
- // XXX: Sorted by name per bootstrap harec
- // conventions
struct_field {
name = "bar",
offs = 4,
diff --git a/hare/types/types.ha b/hare/types/types.ha
@@ -46,7 +46,6 @@ export type struct_union = enum {
// type.
export type _struct = struct {
kind: struct_union,
- // TODO: Ensure that fields are sorted to match bootstrap harec
fields: []struct_field,
};