From 7d54150b281db58d41768b4bffc653351d92ac98 Mon Sep 17 00:00:00 2001 From: Jacob Pratt Date: Mon, 28 Aug 2023 05:20:57 -0400 Subject: [PATCH] Remove diagnostic for unsupported flag --- time/src/lib.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/time/src/lib.rs b/time/src/lib.rs index 4e9438190..212107de6 100644 --- a/time/src/lib.rs +++ b/time/src/lib.rs @@ -133,13 +133,6 @@ #[cfg(feature = "alloc")] extern crate alloc; -// TODO(jhpratt) remove this after a while -#[cfg(unsound_local_offset)] -compile_error!( - "The `unsound_local_offset` flag was removed in time 0.3.18. If you need this functionality, \ - see the `time::util::local_offset::set_soundness` function." -); - // region: macros /// Helper macro for easily implementing `OpAssign`. macro_rules! __impl_assign {