mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
std.Target: Fix getVersionRangeTag() for bridgeos.
Until we actually figure out a version range for this, we shouldn't classify this as using semver. Doing so results in a panic when trying to access the version range since it's not in fact a semver value.
This commit is contained in:
parent
7d71e794dd
commit
c2ba6127c0
1 changed files with 3 additions and 1 deletions
|
|
@ -189,7 +189,9 @@ pub const Os = struct {
|
|||
.other,
|
||||
=> .none,
|
||||
|
||||
.bridgeos,
|
||||
// This should use semver once we determine the version history.
|
||||
.bridgeos => .none,
|
||||
|
||||
.driverkit,
|
||||
.freebsd,
|
||||
.macos,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue