Skip to content

Commit

Permalink
zflecs: remove old compiler bug workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
hazeycode authored and Pyrolistical committed Apr 30, 2024
1 parent c0132bc commit 1e5d52a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/zflecs/src/zflecs.zig
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,8 @@ pub const iter_t = extern struct {
interrupted_by: entity_t,
priv: iter_private_t,
next: iter_next_action_t,
callback: *const fn (it: *iter_t) callconv(.C) void, // TODO: Compiler bug. Should be `iter_action_t`.
set_var: *const fn (it: *iter_t) callconv(.C) void, // TODO: Compiler bug. Should be `iter_action_t`.
callback: iter_action_t,
set_var: iter_action_t,
fini: iter_fini_action_t,
chain_it: ?*iter_t,

Expand Down

0 comments on commit 1e5d52a

Please sign in to comment.