Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Commit

Permalink
consistent argument ordering for delta encode/decode (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwwmanning authored Mar 21, 2024
1 parent 851765c commit 7823fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.zig
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ comptime {
FL.store(base, 0, FL.load(out, FL.T - 1));
}

fn decode(base: *const FL.BaseVector, in: *const FL.Vector, out: *FL.Vector) callconv(.C) void {
fn decode(in: *const FL.Vector, base: *const FL.BaseVector, out: *FL.Vector) callconv(.C) void {
D.decode(base, in, out);
}
};
Expand Down

0 comments on commit 7823fc6

Please sign in to comment.