diff options
| author | Michael Goulet <michael@errs.io> | 2024-08-03 07:57:23 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-08-03 07:57:31 -0400 |
| commit | 106cf7bec2019aa92912e1df1f4d045f6435bc9a (patch) | |
| tree | 6b52097324c0cd22c930ca2b5907f2c31c3339bf | |
| parent | a57b8b91dbcb1cc3768c0a2a2a0c4971ed01b2f0 (diff) | |
| download | rust-106cf7bec2019aa92912e1df1f4d045f6435bc9a.tar.gz rust-106cf7bec2019aa92912e1df1f4d045f6435bc9a.zip | |
Remove another false-negative hidden by dead code changes
| -rw-r--r-- | src/bootstrap/src/core/build_steps/check.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bootstrap/src/core/build_steps/check.rs b/src/bootstrap/src/core/build_steps/check.rs index 8b71300cf85..7f7faf077d0 100644 --- a/src/bootstrap/src/core/build_steps/check.rs +++ b/src/bootstrap/src/core/build_steps/check.rs @@ -31,10 +31,6 @@ pub struct Std { } impl Std { - pub fn new(target: TargetSelection) -> Self { - Self::new_with_build_kind(target, None) - } - pub fn new_with_build_kind(target: TargetSelection, kind: Option<Kind>) -> Self { Self { target, crates: vec![], override_build_kind: kind } } |
