about summary refs log tree commit diff
path: root/src/libstd/sys/cloudabi
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2019-03-22 22:14:35 +0100
committerLinus Färnstrand <faern@faern.net>2019-03-22 23:56:40 +0100
commit1ccad16231f58b09f127e679d54162acbc2f0dae (patch)
tree3063eeccdb21cb5810661ebecd4f689bee1c1c86 /src/libstd/sys/cloudabi
parentd56b1fd0e7c09445574bae34332eeefa93713e44 (diff)
Update sys::time impls to have checked_sub_instant
Diffstat (limited to 'src/libstd/sys/cloudabi')
-rw-r--r--src/libstd/sys/cloudabi/time.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libstd/sys/cloudabi/time.rs b/src/libstd/sys/cloudabi/time.rs
index d7502c61eff..49a234e1158 100644
--- a/src/libstd/sys/cloudabi/time.rs
+++ b/src/libstd/sys/cloudabi/time.rs
@@ -33,11 +33,9 @@ impl Instant {
         Instant { t: 0 }
     }
 
-    pub fn sub_instant(&self, other: &Instant) -> Duration {
-        let diff = self.t
-            .checked_sub(other.t)
-            .expect("second instant is later than self");
-        Duration::new(diff / NSEC_PER_SEC, (diff % NSEC_PER_SEC) as u32)
+    pub fn checked_sub_instant(&self, other: &Instant) -> Option<Duration> {
+        let diff = self.t.checked_sub(other.t)?;
+        Some(Duration::new(diff / NSEC_PER_SEC, (diff % NSEC_PER_SEC) as u32))
     }
 
     pub fn checked_add_duration(&self, other: &Duration) -> Option<Instant> {