diff options
author | Dave Gauer <dave@ratfactor.com> | 2022-03-19 19:38:05 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2022-03-19 19:38:05 -0400 |
commit | 77c79140c7b0aa443adf74c05364ddbf614856df (patch) | |
tree | bc301504463e858cdd82002d4722bf4df1f80b71 /build.zig | |
parent | c22544ece7dcf5cbfe0110c4919c83dd4cb0f85c (diff) | |
download | ziglings-77c79140c7b0aa443adf74c05364ddbf614856df.tar.gz ziglings-77c79140c7b0aa443adf74c05364ddbf614856df.tar.bz2 ziglings-77c79140c7b0aa443adf74c05364ddbf614856df.tar.xz ziglings-77c79140c7b0aa443adf74c05364ddbf614856df.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. |