Skip to content

Commit

Permalink
Merge pull request #361 from quodlibetor/deny-dead-code
Browse files Browse the repository at this point in the history
Remove unused constant, deny(dead_code)
  • Loading branch information
quodlibetor committed Nov 24, 2019
2 parents 5b4fc23 + 41700d1 commit 5905935
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -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

Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Expand Up @@ -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)]

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 5905935

Please sign in to comment.