Thread overview
[phobos] phobos commit, revision 2362
Jan 22, 2011
dsource.org
Jan 23, 2011
Jonathan M Davis
January 22, 2011
phobos commit, revision 2362


user: jmdavis

msg:
More documentation fixes.

http://www.dsource.org/projects/phobos/changeset/2362

paths changed:
U   trunk/phobos/std/datetime.d

January 22, 2011
On 1/22/11 9:49 CST, dsource.org wrote:
> phobos commit, revision 2362
>
>
> user: jmdavis
>
> msg:
> More documentation fixes.
>
> http://www.dsource.org/projects/phobos/changeset/2362
>
> paths changed:
> U   trunk/phobos/std/datetime.d

A nicer idiom instead of aliasing to void* is to define those as structs without ever defining them:

struct SYSTEMTIME;
struct FILETIME;


Andrei
January 22, 2011
On Saturday 22 January 2011 08:30:14 Andrei Alexandrescu wrote:
> On 1/22/11 9:49 CST, dsource.org wrote:
> > phobos commit, revision 2362
> > 
> > 
> > user: jmdavis
> > 
> > msg:
> > More documentation fixes.
> > 
> > http://www.dsource.org/projects/phobos/changeset/2362
> > 
> > paths changed:
> > U   trunk/phobos/std/datetime.d
> 
> A nicer idiom instead of aliasing to void* is to define those as structs without ever defining them:
> 
> struct SYSTEMTIME;
> struct FILETIME;

Good point. Will do.

- Jonathan M Davis