From 02e39b05c6d3b9f553076af7273233e161bb76a3 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 12 Aug 2014 16:25:21 -0700 Subject: [PATCH] Add a fixme about Duration representation --- src/libstd/time/duration.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libstd/time/duration.rs b/src/libstd/time/duration.rs index 2fc7f47dc21..545d1f2aab4 100644 --- a/src/libstd/time/duration.rs +++ b/src/libstd/time/duration.rs @@ -34,6 +34,8 @@ macro_rules! try_opt( ($e:expr) => (match $e { Some(v) => v, None => return None }) ) + +// FIXME #16466: This could be represented as (i64 seconds, u32 nanos) /// ISO 8601 time duration with nanosecond precision. /// This also allows for the negative duration; see individual methods for details. #[deriving(PartialEq, Eq, PartialOrd, Ord)]