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

Commit 7823fc6

Browse files
authored
consistent argument ordering for delta encode/decode (#15)
1 parent 851765c commit 7823fc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ comptime {
6565
FL.store(base, 0, FL.load(out, FL.T - 1));
6666
}
6767

68-
fn decode(base: *const FL.BaseVector, in: *const FL.Vector, out: *FL.Vector) callconv(.C) void {
68+
fn decode(in: *const FL.Vector, base: *const FL.BaseVector, out: *FL.Vector) callconv(.C) void {
6969
D.decode(base, in, out);
7070
}
7171
};

0 commit comments

Comments
 (0)