From fb0d1b3e66251aa56a3df1d05fd4b82b33380a31 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sun, 25 Aug 2019 13:25:13 -0400 Subject: Wipe Rust project Sorry rust, but you're just not fun to write --- src/util/trait_impls.rs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/util/trait_impls.rs (limited to 'src/util/trait_impls.rs') diff --git a/src/util/trait_impls.rs b/src/util/trait_impls.rs deleted file mode 100644 index ba15f7119d..0000000000 --- a/src/util/trait_impls.rs +++ /dev/null @@ -1,17 +0,0 @@ -macro_rules! ref_impl { - (impl $traiti:ident for &T { - $($body:tt)* - }) => { - impl<'a, T: $traitb $(+ $bound)*> $traiti for &'a T { - $($body)* - } - - impl<'a, T: $traitb $(+ $bound)*> $traiti for &'a mut T { - $($body)* - } - - impl $traiti for ::std::boxed::Box { - $($body)* - } - }; -} -- cgit 1.4.1