Skip to content

Commit

Permalink
Set placeholder version values to u32::MAX to make the PR mergeable i…
Browse files Browse the repository at this point in the history
…mmediately
  • Loading branch information
Shnatsel committed Jul 16, 2024
1 parent 50f66f7 commit 230c3cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rustc_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ impl RustVersion {
// TODO: the release that stabilizes sanitizers is not currently known.
// This value is a PLACEHOLDER.
let release_that_stabilized_sanitizers = RustVersion {
major: 1,
minor: 85,
major: u32::MAX,
minor: u32::MAX,
nightly: false,
};
self >= &release_that_stabilized_sanitizers
Expand Down

0 comments on commit 230c3cc

Please sign in to comment.