Re: Getting overloads for non-member functions

2010-01-15 Thread Lutger
On 01/14/2010 11:38 PM, Simen kjaeraas wrote: Is there a way to get a list of overloads for a function name in D? For member functions, there's __traits( getVirtualFunctions, ... ), but that don't work for free functions. I'm afraid there is no way. See also this blog: http://kirkmcdonald.b

std.process not working in Windows

2010-01-15 Thread Jesse Phillips
I've been using the system() function from std.process for some time in Windows and recently it has stopped working. But it doesn't seem to be a problem with my source code, dmd, or Windows. First I thought it might have been changes I made, so I used an old copy of the source. Then I thought

Re: std.process not working in Windows

2010-01-15 Thread Jesse Phillips
I also tried an call to execv, and just now checked the return status which was -1. So I guess that could be used to say, "Sorry this program doesn't work," but I'd like to be able to actually make these calls. I should try std.c.system shouldn't I? import std.process; import std.stdio; void m

Re: std.process not working in Windows

2010-01-15 Thread Jesse Phillips
Scratch that, my company seems to have updated the Anti-virus and that was bringing my headaches.