Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

core.time: Fix building documentation #1289

Merged
merged 1 commit into from
May 29, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/core/time.d
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,9 @@ else

// private, used to translate clock type to proper argument to clock_xxx
// functions on posix systems
version(CoreDdoc)
private int _posixClock(ClockType clockType) { return 0; }
else
version(Posix)
{
private auto _posixClock(ClockType clockType)
Expand Down