Re: D_Version2 problem

2009-06-11 Thread David Ferenczi
Robert Fraser wrote: > David Ferenczi wrote: >> == Quote from Sergey Gromov (snake.sc...@gmail.com)'s article >>> Sun, 18 Jan 2009 22:28:12 +0100, Hoenir wrote: The D_Version2 version identifier doesn't work properly for me. Tried compiling with dmd 1.039. D_Version2 is set even if I pas

Re: D_Version2 problem

2009-06-11 Thread Robert Fraser
David Ferenczi wrote: == Quote from Sergey Gromov (snake.sc...@gmail.com)'s article Sun, 18 Jan 2009 22:28:12 +0100, Hoenir wrote: The D_Version2 version identifier doesn't work properly for me. Tried compiling with dmd 1.039. D_Version2 is set even if I pass -v1 to it. Is this a bug or am I d

Re: D_Version2 problem

2009-06-11 Thread David Ferenczi
== Quote from David Ferenczi (rag...@ferenczi.net)'s article > == Quote from Sergey Gromov (snake.sc...@gmail.com)'s article > > Sun, 18 Jan 2009 22:28:12 +0100, Hoenir wrote: > > > The D_Version2 version identifier doesn't work properly for me. > > > Tried compiling with dmd 1.039. D_Version2 is s

Re: D_Version2 problem

2009-05-16 Thread David Ferenczi
== Quote from Sergey Gromov (snake.sc...@gmail.com)'s article > Sun, 18 Jan 2009 22:28:12 +0100, Hoenir wrote: > > The D_Version2 version identifier doesn't work properly for me. > > Tried compiling with dmd 1.039. D_Version2 is set even if I pass -v1 to it. > > > > Is this a bug or am I doing some

Re: D_Version2 problem

2009-01-18 Thread Hoenir
Bill Baxter schrieb: How are you using it? Figured out what was wrong. I used const and stuff. Using a mixin now to bypass the problem.

Re: D_Version2 problem

2009-01-18 Thread Sergey Gromov
Sun, 18 Jan 2009 22:28:12 +0100, Hoenir wrote: > The D_Version2 version identifier doesn't work properly for me. > Tried compiling with dmd 1.039. D_Version2 is set even if I pass -v1 to it. > > Is this a bug or am I doing something wrong? Works for me. It's hard to tell if you're doing somethi

Re: D_Version2 problem

2009-01-18 Thread Bill Baxter
On Mon, Jan 19, 2009 at 6:28 AM, Hoenir wrote: > The D_Version2 version identifier doesn't work properly for me. > Tried compiling with dmd 1.039. D_Version2 is set even if I pass -v1 to it. > > Is this a bug or am I doing something wrong? > I just tried with DMD 1.037 and it worked fine. How are

Re: D_Version2 problem

2009-01-18 Thread Stewart Gordon
Hoenir wrote: The D_Version2 version identifier doesn't work properly for me. Tried compiling with dmd 1.039. D_Version2 is set even if I pass -v1 to it. Is this a bug Works for me, as this code demonstrates: -- import std.stdio; void main() { version (D_Version2) { writef

D_Version2 problem

2009-01-18 Thread Hoenir
The D_Version2 version identifier doesn't work properly for me. Tried compiling with dmd 1.039. D_Version2 is set even if I pass -v1 to it. Is this a bug or am I doing something wrong?