Fix TableWithRelations for TableShape with declarations.
This commit is contained in:
parent
4782cbb37a
commit
fc6cbaa2b9
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ pub fn TableWithRelations(comptime TableShape: type, comptime MetadataShape: ?ty
|
|||
.Struct = .{
|
||||
.layout = tableType.Struct.layout,
|
||||
.fields = &fields,
|
||||
.decls = tableType.Struct.decls,
|
||||
.decls = &[0]std.builtin.Type.Declaration{},
|
||||
.is_tuple = tableType.Struct.is_tuple,
|
||||
.backing_integer = tableType.Struct.backing_integer,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue