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.
1 files changed, 3 insertions(+), 1 deletions(-)
lib
std
lib/std/Target.zig+3-1
| ... | ... | @@ -189,7 +189,9 @@ pub const Os = struct { |
| 189 | 189 | .other, |
| 190 | 190 | => .none, |
| 191 | 191 | |
| 192 | | .bridgeos, |
| 192 | // This should use semver once we determine the version history. |
| 193 | .bridgeos => .none, |
| 194 | |
| 193 | 195 | .driverkit, |
| 194 | 196 | .freebsd, |
| 195 | 197 | .macos, |