quickbar

2012-03-12 Thread negerns
quickbar-20120313-b.rar Description: Binary data

Re: quickbar

2012-03-12 Thread negerns
On 3/13/2012 3:06 AM, negerns wrote: I'm so sorry for that :( my bad! I hope it could be delete...

Re: std.gregorian contribution

2010-05-17 Thread negerns
On 5/18/2010 1:03 AM, Tomek SowiƄski wrote: negerns wrote: Also, I have introduced a unjoin() function as a helper function. It splits a string into an array of lines using the specified array of characters as delimiters. I am not sure if there is already an existing function that does

Re: std.gregorian

2010-05-16 Thread negerns
On 5/2/2010 9:38 AM, Andrei Alexandrescu wrote: I just committed a first draft of std.gregorian. The design and the code are copied from Jeff Garland's Boost date and time library. Once we get the library in shape and I discuss the matter with Jeff, I'll insert the proper attributions in the

std.gregorian contribution

2010-05-16 Thread negerns
toSimpleString() - @property string toIsoString() - @property string toIsoExtendedString() - added string[] months used only by toSimpleString() - unit tests I have attached the .diff file gregorian.diff Regards, negerns 19c19,23 import core.sys.posix.time; --- version (Windows) { import

siginfo_t not defined

2010-05-16 Thread negerns
I got the following error messages. The file test.d is just int main(string[] args) { return 0; } and gregorian.d is from the latest svn trunk. Compile: dmd test.d gregorian.d D:\projects\dmd\dmd2\windows\bin\..\..\src\druntime\import\core\sys\posix\signal.d(25): Error: identifier

Re: siginfo_t not defined

2010-05-16 Thread negerns
Why is the definition of 'siginfo_t' in druntime\import\core\sys\posix\signal.d commented out? BTW, I'm using dmd 2.046 on windows vista 32-bit.

Re: siginfo_t not defined

2010-05-16 Thread negerns
On 5/16/2010 10:46 PM, negerns wrote: Why is the definition of 'siginfo_t' in druntime\import\core\sys\posix\signal.d commented out? BTW, I'm using dmd 2.046 on windows vista 32-bit. - siginfo_t is only for posix/linux; can't use it in windows. - siginfo_t isn't really used by gregorian.d

wikipedia const-correctness link to d const article is missing

2010-03-05 Thread negerns
to this article http://www.digitalmars.com/d/2.0/const3.html? negerns

Re: Compiled dmd2.032 in VC++ 2009!

2009-09-09 Thread negerns
I ran into the __pascal calling convention. VS2008 no longer support The __pascal calling convention is no longer supported in VS2008. How did you resolve this?

Re: Compiled dmd2.032 in VC++ 2009!

2009-09-08 Thread negerns
Jeremie, I tried compiling the sources using VS2008 SP1. I did run into some of what you mentioned but got stuck midway. Could you elaborate on how you dealt with the missing header complex.h?

Re: SQLite 3.5.16 bindings for D

2009-06-28 Thread negerns
Tango? Can I use it with Phobos? Just replace: private import tango.core.Vararg; // For va_list. with: private import std.stdarg; Can't those be in druntime? Could this be included in the DDBI project? I believe that SQLite was started in DDBI back then. negerns