diff options
| author | Sebastian <[email protected]> | 2024-06-16 18:58:48 +0200 |
|---|---|---|
| committer | Sebastian <[email protected]> | 2024-06-16 18:58:48 +0200 |
| commit | 83f16709ba212696f340b2a527dcad5f191d5f08 (patch) | |
| tree | dd970988073ad80083348f50a9cac1a5c54e6f78 | |
| parent | 6d3d3651d094d42a80ccdf3ffd7f175422f572ac (diff) | |
| download | ziglings-83f16709ba212696f340b2a527dcad5f191d5f08.tar.xz ziglings-83f16709ba212696f340b2a527dcad5f191d5f08.zip | |
Calling `split` is deprecated
The `split` function in std mem is depreacted and a `@compileError`, splitSequence,
splitAny, or splitScalar should be used instead.
| -rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -459,7 +459,7 @@ fn resetLine() void { pub fn trimLines(allocator: std.mem.Allocator, buf: []const u8) ![]const u8 { var list = try std.ArrayList(u8).initCapacity(allocator, buf.len); - var iter = std.mem.split(u8, buf, " \n"); + var iter = std.mem.splitSequence(u8, buf, " \n"); while (iter.next()) |line| { // TODO: trimming CR characters is probably not necessary. const data = std.mem.trimRight(u8, line, " \r"); @@ -521,7 +521,7 @@ fn validate_exercises() bool { return false; } - var iter = std.mem.split(u8, ex.output, "\n"); + var iter = std.mem.splitScalar(u8, ex.output, '\n'); while (iter.next()) |line| { const output = std.mem.trimRight(u8, line, " \r"); if (output.len != line.len) { |
