From 147049cbe25c542792c80ca63e42690fad606ac9 Mon Sep 17 00:00:00 2001 From: Bearmine Date: Mon, 26 May 2025 08:14:54 -0500 Subject: [PATCH] Comment out unused code --- day_02/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/day_02/src/main.rs b/day_02/src/main.rs index 20fdb0a..5d853a7 100644 --- a/day_02/src/main.rs +++ b/day_02/src/main.rs @@ -22,10 +22,10 @@ where #[derive(Eq, PartialEq, Copy, Clone, Debug)] enum TransitionState { - Good, // Good state - Bad, // Bad state - Dampened, // Could be removed to make a good state - DampenedEnd, // Could be removed to make a good state, end or start of report + Good, // Good state + Bad, // Bad state + // Dampened, // Could be removed to make a good state + // DampenedEnd, // Could be removed to make a good state, end or start of report } #[derive(Eq, PartialEq, Copy, Clone, Debug)]