From 03d5b453b9989c4b83b1afdc96969552a39ada07 Mon Sep 17 00:00:00 2001 From: Fenrir Date: Sun, 9 Jul 2017 20:21:38 -0600 Subject: update collections module also remove deprecated `collections` crate dependency --- ctr-std/src/sys_common/mod.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'ctr-std/src/sys_common') diff --git a/ctr-std/src/sys_common/mod.rs b/ctr-std/src/sys_common/mod.rs index 936ff80..c6e81cc 100644 --- a/ctr-std/src/sys_common/mod.rs +++ b/ctr-std/src/sys_common/mod.rs @@ -76,10 +76,6 @@ pub fn at_exit(f: F) -> Result<(), ()> { if at_exit_imp::push(Box::new(f)) {Ok(())} else {Err(())} } -macro_rules! rtabort { - ($($t:tt)*) => (::sys_common::util::abort(format_args!($($t)*))) -} - // Computes (value*numer)/denom without overflow, as long as both // (numer*denom) and the overall result fit into i64 (which is the case // for our time conversions). -- cgit v1.2.3