Skip to content

Commit d9c213c

Browse files
committed
slight Default cleanup for option
1 parent fa45efa commit d9c213c

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

compiler/rustc_session/src/config.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -3420,9 +3420,10 @@ impl DumpMonoStatsFormat {
34203420

34213421
/// `-Zpolonius` values, enabling the borrow checker polonius analysis, and which version: legacy,
34223422
/// or future prototype.
3423-
#[derive(Clone, Copy, PartialEq, Hash, Debug)]
3423+
#[derive(Clone, Copy, PartialEq, Hash, Debug, Default)]
34243424
pub enum Polonius {
34253425
/// The default value: disabled.
3426+
#[default]
34263427
Off,
34273428

34283429
/// Legacy version, using datalog and the `polonius-engine` crate. Historical value for `-Zpolonius`.
@@ -3432,12 +3433,6 @@ pub enum Polonius {
34323433
Next,
34333434
}
34343435

3435-
impl Default for Polonius {
3436-
fn default() -> Self {
3437-
Polonius::Off
3438-
}
3439-
}
3440-
34413436
impl Polonius {
34423437
/// Returns whether the legacy version of polonius is enabled
34433438
pub fn is_legacy_enabled(&self) -> bool {

0 commit comments

Comments
 (0)