Fix some warnings.

This commit is contained in:
2018-11-29 16:56:52 +01:00
parent 57b2981a15
commit fccb7d28ad

View File

@@ -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;