Remove unused constant, deny(dead_code)

This commit is contained in:
Brandon W Maister 2019-11-23 19:56:24 -05:00
parent 5b4fc23bcb
commit 41700d101e
2 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,7 @@ Versions with only mechanical changes will be omitted from the following list.
* Use markdown footnotes on the `strftime` docs page (@qudlibetor #359)
* Migrate from `try!` -> `?` (question mark) because it is now emitting
deprecation warnings and has been stable since rustc 1.13.0
* Deny dead code
## 0.4.9

View File

@ -386,6 +386,7 @@
#![cfg_attr(feature = "bench", feature(test))] // lib stability features as per RFC #507
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(dead_code)]
#![cfg_attr(not(any(feature = "std", test)), no_std)]
@ -465,8 +466,6 @@ macro_rules! try_opt {
($e:expr) => (match $e { Some(v) => v, None => return None })
}
const EPOCH_NUM_DAYS_FROM_CE: i32 = 719_163;
mod div;
#[cfg(not(feature="clock"))]
mod oldtime;