diff options
| author | Dave Gauer <[email protected]> | 2022-03-19 19:38:05 -0400 |
|---|---|---|
| committer | Dave Gauer <[email protected]> | 2022-03-19 19:38:05 -0400 |
| commit | f34b6aa02408cbc1483ab182592a2f8d5b0a4f9a (patch) | |
| tree | bc301504463e858cdd82002d4722bf4df1f80b71 /build.zig | |
| parent | 3f922a35293c3e5e8cad08f400e4003075cec071 (diff) | |
| download | ziglings-f34b6aa02408cbc1483ab182592a2f8d5b0a4f9a.tar.xz ziglings-f34b6aa02408cbc1483ab182592a2f8d5b0a4f9a.zip | |
Update sentinel type for v0.10.0
Fixes
.../076_sentinels.zig:95:30: error: incompatible types:
'u32' and '?*const anyopaque':
while (my_seq[i] != my_sentinel) {
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ const print = std.debug.print; // When changing this version, be sure to also update README.md in two places: // 1) Getting Started // 2) Version Changes -const needed_version = std.SemanticVersion.parse("0.9.0-dev.2025") catch unreachable; +const needed_version = std.SemanticVersion.parse("0.10.0-dev.1427") catch unreachable; const Exercise = struct { /// main_file must have the format key_name.zig. |
