Merge pull request #361 from quodlibetor/deny-dead-code
Remove unused constant, deny(dead_code)
This commit is contained in:
commit
59059352c1
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue