economicmodeling / harbored

Documentation generator for D
Boost Software License 1.0
9 stars 4 forks source link

visitor.d: /dev/null on Windows #17

Open MarisaLovesUsAll opened 10 years ago

MarisaLovesUsAll commented 10 years ago

How about adding this? visitor.d, line 103~ version(linux) { blackHole = File("/dev/null", "w"); } version(Windows) { blackHole = File("NUL", "w"); } ... I also think Windows support might be useful.

Hackerpilot commented 10 years ago

Couldn't you have just written that as a pull request?