Re: Next Release

2011-04-22 Thread Joel Christensen
Well, then I'd better make sure that I get my most recent updates to std.datetime in soon. - Jonathan M Davis Does your library take into account that there's no year 0?

Re: Web development howto?

2011-04-22 Thread Robert Clipsham
On 22/04/2011 03:53, Jaime Barciela wrote: Hello everyone, I'm going though TDPL and I just joined this list. I've been looking for guidance on how to do web applications in D but I haven't found anything. My background is not C/C++ but Java (and Delphi many years ago) so I have not only a new

Re: Next Release

2011-04-22 Thread Jonathan M Davis
> > Well, then I'd better make sure that I get my most recent updates to > > std.datetime in soon. > > > > - Jonathan M Davis > > Does your library take into account that there's no year 0? Actually, for ISO 8601, which the library follows, there _is_ a year 0. Date, DateTime, and SysTime all h

Expression templates in D1

2011-04-22 Thread SiegeLord
I have been trying to create some simple expression templates in D1 but I've run into trouble. Here is a reduced test case: class A { void opSub_r(T:int)(T a) { } void opSub(T)(T a) { } } void main(char[][] args) { A a; a - 1; a - a; /

Cycle detected between modules with ctors/dtors

2011-04-22 Thread Mandeep
Hi, I am trying to compile the code that was working with dmd 2.050 using dmd 2.052. The code compiles but it gives me errors with message when trying to run: Cycle detected between modules with ctors/dtors This was not happening earlier with 2.050. I am not able to produce a smaller test c