mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Fix some warnings.
This commit is contained in:
@@ -26,8 +26,8 @@ impl common::Solution for Day25 {
|
|||||||
/// This function is an approximation of what the original code is doing.
|
/// This function is an approximation of what the original code is doing.
|
||||||
pub fn sender_program(mut a: i32) {
|
pub fn sender_program(mut a: i32) {
|
||||||
// Placeholder variables
|
// Placeholder variables
|
||||||
let mut b = 0;
|
let mut b;
|
||||||
let mut d = 0;
|
let mut d;
|
||||||
|
|
||||||
d = a;
|
d = a;
|
||||||
d += 362 * 7;
|
d += 362 * 7;
|
||||||
|
|||||||
Reference in New Issue
Block a user