about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFriedrich von Never <friedrich@fornever.me>2020-02-02 15:08:46 +0700
committerGitHub <noreply@github.com>2020-02-02 15:08:46 +0700
commitb0a9e949e7afc1a77b6f73a0d3fa6b6081763a57 (patch)
tree45b1c5d2a1e387e2306d0596174df3aacfc6835f
parentbc4a3390648dffd88e6d69d06e6d49cf3981e713 (diff)
downloadrust-b0a9e949e7afc1a77b6f73a0d3fa6b6081763a57.tar.gz
rust-b0a9e949e7afc1a77b6f73a0d3fa6b6081763a57.zip
Strip unnecessary subexpression
It became unnecessary since a06baa56b95674fc626b3c3fd680d6a65357fe60 reformatted the file.
-rw-r--r--src/libstd/sys/unix/time.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/time.rs b/src/libstd/sys/unix/time.rs
index 23104419978..6707f790cab 100644
--- a/src/libstd/sys/unix/time.rs
+++ b/src/libstd/sys/unix/time.rs
@@ -282,7 +282,6 @@ mod inner {
             (cfg!(target_os = "linux") && cfg!(target_arch = "x86_64"))
                 || (cfg!(target_os = "linux") && cfg!(target_arch = "x86"))
                 || cfg!(target_os = "fuchsia")
-                || false // last clause, used so `||` is always trailing above
         }
 
         pub fn checked_sub_instant(&self, other: &Instant) -> Option<Duration> {