Re: What does this linker messages try to tell me?

2009-04-19 Thread Frank Benoit
Christopher Wright schrieb: > There are two definitions for AstractObservableList.add(Object) in > org.eclipse.core.databinding.observable.list.AstractObservableList. > > Most of the rest of the problems are the same issue, just for different > functions. > > I would guess that you built one vers

Re: private module symbols

2009-04-19 Thread Stewart Gordon
Gide Nwawudu wrote: Looks like a variant of bug 314. http://d.puremagic.com/issues/show_bug.cgi?id=314 Actually, it's this one http://d.puremagic.com/issues/show_bug.cgi?id=2830 Stewart.

Re: What does this linker messages try to tell me?

2009-04-19 Thread Christopher Wright
Frank Benoit wrote: OPTLINK (R) for Win32 Release 8.00.1 Copyright (C) Digital Mars 1989-2004 All rights reserved. C:\Project\dwtinst\dwt-rcp\lib\org.eclipse.core.databinding.lib(AbstractObservableList) Offset F0567H Record Type 00C3 Error 1: Previous Definition Different : _D3org7eclipse4cor

Re: Documentation on DMD source

2009-04-19 Thread Daniel Keep
Unknown W. Brackets wrote: > You'll get a lot of use out of defining the debugs for #ifdefs, and/or > uncommenting printfs and following it. > > If your code may not be running, use a breakpoint or printf to ensure it > is. > > -[Unknown] I finally found out why my changes weren't working. Be

What does this linker messages try to tell me?

2009-04-19 Thread Frank Benoit
OPTLINK (R) for Win32 Release 8.00.1 Copyright (C) Digital Mars 1989-2004 All rights reserved. C:\Project\dwtinst\dwt-rcp\lib\org.eclipse.core.databinding.lib(AbstractObservableList) Offset F0567H Record Type 00C3 Error 1: Previous Definition Different : _D3org7eclipse4core11databinding10observ

Re: problem with gdc for OSX?

2009-04-19 Thread Denis Koroskin
On Sun, 19 Apr 2009 12:37:11 +0400, MLT wrote: Sorry, this could be a bug report and not a question, and probably the wrong place to post it then. I installed gdc according to the instructions given in http://www.dsource.org/projects/tango/wiki/MacOSXInstall from http://sourceforge.net/p

Re: Stack allocator?

2009-04-19 Thread Denis Koroskin
On Sun, 19 Apr 2009 10:15:41 +0400, Tim Matthews wrote: On Sat, 18 Apr 2009 16:42:28 -0700 Robert Fraser wrote: I remember a while back someone posted an easy dynamic stack allocator... anyone have the link? Thanks, Robert Tango has this: http://dsource.org/projects/tango/docs/stable/ta

problem with gdc for OSX?

2009-04-19 Thread MLT
Sorry, this could be a bug report and not a question, and probably the wrong place to post it then. I installed gdc according to the instructions given in http://www.dsource.org/projects/tango/wiki/MacOSXInstall from http://sourceforge.net/project/downloading.php?group_id=135857&filename=gdc-tr

Re: associative arrays with arrays as value

2009-04-19 Thread bearophile
MLT: > Why is that? I think this is the right syntax (I am using Phobos on D1): import std.stdio: writefln; void main() { int[5][string] aa = ["a": [1, 2, 3, 4, 5]]; aa["b"][] = aa["a"]; # line 5 writefln(aa); } But it gives an: Error: ArrayBoundsError temp(5) It looks like a bug. St