Skip to content
Snippets Groups Projects
Commit bb70179a authored by Simon Peyton Jones's avatar Simon Peyton Jones
Browse files

[project @ 1999-11-25 10:37:12 by simonpj]

Add a comment
parent 57050fbd
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,10 @@ external calendar time @CalendarTime@.
-- In fact, I think one of Int32 or Word32 would do. - ADR
data ClockTime = TOD Int64 Int64 deriving (Eq, Ord)
#else
data ClockTime = TOD Integer Integer deriving (Eq, Ord)
data ClockTime = TOD Integer -- Seconds since 00:00:00 on 1 Jan 1970
Integer -- Picoseconds with the specified second
deriving (Eq, Ord)
#endif
\end{code}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment