Re: dmd.conf problems on dmd.2.019 (object.d not readable)

2008-10-27 Thread BCS
Reply to Charles, Message: object.d: module object cannot read file 'object.d' The fix was to alter dmd.conf, thus: [Environment] DFLAGS=-I/usr/local/dmd/src/phobos -L-L/usr/local/dmd/lib [EMAIL PROTECTED]/../src/phobos [EMAIL PROTECTED]/../lib I'm running on Ubuntu Hardy Heron. dmd is

Re: Russian and other national languages support

2009-02-03 Thread BCS
Hello Stewart, BCS wrote: Reply to Stewart, Meanwhile, best bet is to stop using the web interface and get oneself a newsreader. If the web interface is the problem than it's the posting bit It can't be just the posting bit. If it doesn't declare a sensible encoding, it can't properly

ping Walter: RFC

2009-06-22 Thread BCS
I have a design decision hanging on if issue 3073 is valid: http://d.puremagic.com/issues/show_bug.cgi?id=3072 I'm not looking to get it fixed right now (I wouldn't mind if it was :) but to move forward on something I need to know if it ever will be. The short version is should this

Re: Static arrays / File imports cause memory leaks

2010-01-13 Thread BCS
Hello bobef, I can't reproduce this but I think it worths mentioning. I just finished debugging a memory leak. It turned out to be compiler problem (dmd 1.035 windows). I had two big static arrays in a class member function (around 200kb each) and using my app as usual was causing huge memory

SEG-V at expression.c:6255, know issue?

2010-01-21 Thread BCS
I'm getting a seg-v (not an assert) at expression.c:6255 from some template code. Is this a know issue or sould I put some work into cutting it down?

Re: SEG-V at expression.c:6255, know issue?

2010-01-21 Thread BCS
Hello BCS, I'm getting a seg-v (not an assert) at expression.c:6255 from some template code. Is this a know issue or sould I put some work into cutting it down? FWIW this fixes the problem into an assert Expression *DotTemplateInstanceExp::semantic(Scope *sc) { #if LOGSEMANTIC printf

Re: levenshteinDistanceAndPath Source bug

2011-01-11 Thread BCS
Hello tsukikage, Hello, there is a bug at std.algorithm source. dsource,org's source: 4120 levenshteinDistanceAndPath(alias equals = a == b, Range1, Range2) 4121 (Range1 s, Range2 t) 4122 if (isForwardRange!(Range1) isForwardRange!(Range2)) 4123 { 4124