More documentation fixes.

This commit is contained in:
Jonathan M Davis 2011-01-22 15:49:03 +00:00
parent 11f2899ab5
commit 59eb1b70a5

View file

@ -30076,6 +30076,10 @@ version(D_Ddoc)
private:
version(Windows) {}
else
alias void* TIME_ZONE_INFORMATION;
static bool _dstInEffect(const TIME_ZONE_INFORMATION* tzInfo, long stdTime) nothrow;
static long _utcToTZ(const TIME_ZONE_INFORMATION* tzInfo, long stdTime, bool hasDST) nothrow;
static long _tzToUTC(const TIME_ZONE_INFORMATION* tzInfo, long adjTime, bool hasDST) nothrow;
@ -31550,12 +31554,9 @@ unittest
version(D_Ddoc)
{
version(Windows)
{
}
version(Windows) {}
else
{
//These types don't exist outside of Windows.
alias void* SYSTEMTIME;
alias void* FILETIME;
}