diff options
Diffstat (limited to 'src/sys/time.rs')
-rw-r--r-- | src/sys/time.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sys/time.rs b/src/sys/time.rs index 5c39d987..1750481c 100644 --- a/src/sys/time.rs +++ b/src/sys/time.rs @@ -58,7 +58,6 @@ impl TimeVal { /// Makes a new `TimeVal` with given number of microseconds. #[inline] - #[unstable(feature = "std_misc")] pub fn microseconds(microseconds: i64) -> TimeVal { let (secs, micros) = div_mod_floor_64(microseconds, MICROS_PER_SEC); assert!(secs >= MIN_SECONDS && secs <= MAX_SECONDS, "TimeVal out of bounds"); |