From c4d9f6c2dbe6734d426db0b70f8760558463b14f Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 2 Dec 2019 16:04:29 +0100 Subject: [PATCH] 2019: removed unused types from lib.rs --- aoc2019/src/lib.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/aoc2019/src/lib.rs b/aoc2019/src/lib.rs index 5d003de..28326d5 100644 --- a/aoc2019/src/lib.rs +++ b/aoc2019/src/lib.rs @@ -1,9 +1,2 @@ pub mod day01; pub mod day02; - -pub type Result = std::result::Result>; - -#[macro_export] -macro_rules! err { - ($($string:expr),+) => (Box::::from(format!($($string),+))) -}