diff options
| author | Nathaniel Ringo <remexre@gmail.com> | 2018-01-09 15:09:54 -0600 |
|---|---|---|
| committer | Nathaniel Ringo <remexre@gmail.com> | 2018-01-09 15:09:54 -0600 |
| commit | 7caf753d4413cb0ae7bc266fd89e56f1d3842857 (patch) | |
| tree | 3be89c2da9bbb97374c04d5151e433869359db0a | |
| parent | 2624c05acf93ca2b35dae7ae3770fd92b5dce4b5 (diff) | |
| download | rust-7caf753d4413cb0ae7bc266fd89e56f1d3842857.tar.gz rust-7caf753d4413cb0ae7bc266fd89e56f1d3842857.zip | |
Fixes Duration constructor const fns other than new, reverts new to non-const.
| -rw-r--r-- | src/libstd/time/duration.rs | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/libstd/time/duration.rs b/src/libstd/time/duration.rs index e0c90664119..bb30d0d80bd 100644 --- a/src/libstd/time/duration.rs +++ b/src/libstd/time/duration.rs @@ -73,7 +73,7 @@ impl Duration { /// ``` #[stable(feature = "duration", since = "1.3.0")] #[inline] - pub const fn new(secs: u64, nanos: u32) -> Duration { + pub fn new(secs: u64, nanos: u32) -> Duration { let secs = secs.checked_add((nanos / NANOS_PER_SEC) as u64) .expect("overflow in Duration::new"); let nanos = nanos % NANOS_PER_SEC; @@ -113,9 +113,10 @@ impl Duration { #[stable(feature = "duration", since = "1.3.0")] #[inline] pub const fn from_millis(millis: u64) -> Duration { - let secs = millis / MILLIS_PER_SEC; - let nanos = ((millis % MILLIS_PER_SEC) as u32) * NANOS_PER_MILLI; - Duration { secs: secs, nanos: nanos } + Duration { + secs: millis / MILLIS_PER_SEC, + nanos: ((millis % MILLIS_PER_SEC) as u32) * NANOS_PER_MILLI, + } } /// Creates a new `Duration` from the specified number of microseconds. @@ -134,9 +135,10 @@ impl Duration { #[unstable(feature = "duration_from_micros", issue = "44400")] #[inline] pub const fn from_micros(micros: u64) -> Duration { - let secs = micros / MICROS_PER_SEC; - let nanos = ((micros % MICROS_PER_SEC) as u32) * NANOS_PER_MICRO; - Duration { secs: secs, nanos: nanos } + Duration { + secs: micros / MICROS_PER_SEC, + nanos: ((micros % MICROS_PER_SEC) as u32) * NANOS_PER_MICRO, + } } /// Creates a new `Duration` from the specified number of nanoseconds. @@ -155,9 +157,10 @@ impl Duration { #[unstable(feature = "duration_extras", issue = "46507")] #[inline] pub const fn from_nanos(nanos: u64) -> Duration { - let secs = nanos / (NANOS_PER_SEC as u64); - let nanos = (nanos % (NANOS_PER_SEC as u64)) as u32; - Duration { secs: secs, nanos: nanos } + Duration { + secs: nanos / (NANOS_PER_SEC as u64), + nanos: (nanos % (NANOS_PER_SEC as u64)) as u32, + } } /// Returns the number of _whole_ seconds contained by this `Duration`. |
