Skip to content

Commit

Permalink
zig: update the latest zig
Browse files Browse the repository at this point in the history
  • Loading branch information
Organ1sm committed Sep 20, 2024
1 parent 46f3995 commit da00882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aro/Preprocessor.zig
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ fn clearBuffers(pp: *Preprocessor) void {
pub fn expansionSlice(pp: *Preprocessor, tok: Tree.TokenIndex) []Source.Location {
const S = struct {
fn orderTokenIndex(context: Tree.TokenIndex, item: Tree.TokenIndex) std.math.Order {
return std.math.order(item, context);
return std.math.order(context, item);
}
};

Expand Down

0 comments on commit da00882

Please sign in to comment.