[Issue 9688] New: `__traits(compiles, a.b)` fails on UFCS and property

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9688 Summary: `__traits(compiles, a.b)` fails on UFCS and property Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: rejects-valid Severity: nor

[Issue 9687] New: `std.algorithm.reduce` with default values isn't UFCS-able in regard to range

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9687 Summary: `std.algorithm.reduce` with default values isn't UFCS-able in regard to range Product: D Version: D2 Platform: All OS/Version: All Status: NEW Se

[Issue 9686] New: Wrong ambiguity overloading error for functions with signed/unsigned integral arguments

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9686 Summary: Wrong ambiguity overloading error for functions with signed/unsigned integral arguments Product: D Version: D2 Platform: All OS/Version: All Status: NEW

[Issue 9685] New: Context pointer of struct isn't copied when a closure is passed by alias

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9685 Summary: Context pointer of struct isn't copied when a closure is passed by alias Product: D Version: unspecified Platform: All OS/Version: All Status: NEW

[Issue 8589] Incorrect conversion of function returning `typeof(null)` to function returning an array

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8589 --- Comment #6 from Kenji Hara 2013-03-10 21:02:31 PDT --- (In reply to comment #5) > > Also this won't work because '[]' will be typed as 'void[]': > > That would be a type inference bug. Oh.. sorry, it is a today's limitation, not a bug. -

[Issue 8589] Incorrect conversion of function returning `typeof(null)` to function returning an array

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8589 --- Comment #5 from Kenji Hara 2013-03-10 20:55:04 PDT --- (In reply to comment #4) > Kenji, is this a parser bug? > > f(() => int[].init); > > test.d(11): Error: found '[' when expecting '.' following int > test.d(11): Error: found ']' when

[Issue 9665] Structure constant members can not be initialized if have opAssign

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9665 --- Comment #16 from Kenji Hara 2013-03-10 20:40:34 PDT --- (In reply to comment #15) > From what I understood, the proposal is to relax(remove temporarily) constness > of members during ctor invocation which allows code like below: > > T* p;

[Issue 3673] inheritance + if clause = no go

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3673 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 Vladimir Panteleev changed: What|Removed |Added Keywords||pull --- Comment #8 from Vladimir

[Issue 4909] Two suggestions for std.algorithm.schwartzSort()

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4909 --- Comment #8 from bearophile_h...@eml.cc 2013-03-10 20:18:10 PDT --- (In reply to comment #7) > https://github.com/D-Programming-Language/phobos/pull/1197 > The naming issue will have to wait. I still hate the "schwartzSort" name, after more

[Issue 3673] inheritance + if clause = no go

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3673 --- Comment #6 from github-bugzi...@puremagic.com 2013-03-10 20:00:51 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/b8ed73f4ffc49272f95c6ce9ceb56330e3a101b

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 --- Comment #6 from Andrei Alexandrescu 2013-03-10 19:58:51 PDT --- (In reply to comment #5) > I think a clobber option with the default set to "no" would be better. > Atomicity is a valid concern, but I don't think the default behavior should

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 --- Comment #7 from Andrei Alexandrescu 2013-03-10 19:59:12 PDT --- (In reply to comment #6) > (In reply to comment #5) > > I think a clobber option with the default set to "no" would be better. > > Atomicity is a valid concern, but I don't th

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 --- Comment #5 from Vladimir Panteleev 2013-03-11 04:53:21 EET --- I think a clobber option with the default set to "no" would be better. Atomicity is a valid concern, but I don't think the default behavior should imply the risk of accidentall

[Issue 4909] Two suggestions for std.algorithm.schwartzSort()

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4909 --- Comment #7 from Andrei Alexandrescu 2013-03-10 19:53:33 PDT --- https://github.com/D-Programming-Language/phobos/pull/1197 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 --- Comment #4 from Andrei Alexandrescu 2013-03-10 19:43:21 PDT --- No, rename must clobber. It's the only way things can be done atomically on Unix as far as I can tell. If we have code such as "if (!exists(target)) rename(source, target)" we

[Issue 4874] std.numeric.dotProduct doesn't work with bigints

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4874 --- Comment #2 from Andrei Alexandrescu 2013-03-10 19:20:19 PDT --- Assigning to Don. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 Andrej Mitrovic changed: What|Removed |Added CC||andrej.mitrov...@gmail.com --- Comme

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Comm

[Issue 4301] BigInt * const(BigInt) doesn't work well

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4301 Andrei Alexandrescu changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #3 from And

[Issue 5032] std.file.rename acts differently on Windows and Linux when the target file already exists.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5032 --- Comment #1 from Andrei Alexandrescu 2013-03-10 18:58:36 PDT --- Could somebody with access to a Windows machine change std.file.rename to overwrite the target? I see in http://msdn.microsoft.com/en-us/library/windows/desktop/aa365240(v=vs.

[Issue 6535] RDMD outputs broken library files

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6535 David Nadlinger changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 9684] New: rdmd -lib produces corrupted file

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9684 Summary: rdmd -lib produces corrupted file Product: D Version: D2 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: DMD

[Issue 9157] RDMD: Add support for the Unilink linker

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9157 --- Comment #5 from Andrej Mitrovic 2013-03-10 18:01:22 PDT --- (In reply to comment #4) > By setting LINKCMD in sc.ini. Yeah but the purpose of adding the feature to RDMD is to avoid having to mess with ini files. -- Configure issuemail: h

[Issue 9157] RDMD: Add support for the Unilink linker

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9157 --- Comment #6 from Vladimir Panteleev 2013-03-11 03:04:25 EET --- If you remove the LINKCMD line from sc.ini, DMD will take it out of the environment. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You

[Issue 6535] RDMD outputs broken library files

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6535 --- Comment #4 from Vladimir Panteleev 2013-03-11 02:57:53 EET --- I'm fairly certain it does, David. The command: rdmd --build-only -lib lib.d creates a 200KB lib.lib file for me with the patch. -- Configure issuemail: http://d.puremagic.

[Issue 9157] RDMD: Add support for the Unilink linker

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9157 --- Comment #4 from Vladimir Panteleev 2013-03-11 02:54:55 EET --- By setting LINKCMD in sc.ini. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 9672] mixin within cyclic import causes undefined properties

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9672 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Version|unspecified

[Issue 8589] Incorrect conversion of function returning `typeof(null)` to function returning an array

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8589 Andrej Mitrovic changed: What|Removed |Added CC||andrej.mitrov...@gmail.com --- Comme

[Issue 9683] RDMD: Emit error on missing or unexpected main function

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9683 --- Comment #1 from Andrej Mitrovic 2013-03-10 15:17:46 PDT --- Actually this can only work if there are no static library or object files passed on the command line to RDMD, since they could potentially contain 'main.'. -- Configure issuema

[Issue 6535] RDMD outputs broken library files

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6535 David Nadlinger changed: What|Removed |Added CC||c...@klickverbot.at,

[Issue 9508] RDMD doesn't generate new dependency list when a file is changed.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9508 David Nadlinger changed: What|Removed |Added CC||c...@klickverbot.at --- Comment #2 f

[Issue 6431] [RDMD] Modifying a library doesn't trigger a rebuild

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6431 David Nadlinger changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9508] RDMD doesn't generate new dependency list when a file is changed.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9508 David Nadlinger changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 9508] RDMD doesn't generate new dependency list when a file is changed.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9508 --- Comment #1 from github-bugzi...@puremagic.com 2013-03-10 14:34:34 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/tools https://github.com/D-Programming-Language/tools/commit/fa6ac0a8183ccc0bd8ebffe98260b3961b6c

[Issue 6431] [RDMD] Modifying a library doesn't trigger a rebuild

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6431 --- Comment #3 from github-bugzi...@puremagic.com 2013-03-10 14:34:31 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/tools https://github.com/D-Programming-Language/tools/commit/d7d17858bd8525e1481d931b5a0fb3cf2a3a

[Issue 6535] RDMD outputs broken library files

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6535 --- Comment #2 from github-bugzi...@puremagic.com 2013-03-10 14:34:27 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/tools https://github.com/D-Programming-Language/tools/commit/0ce81aaa86111f57444e9b43f121f09e6bbf

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 --- Comment #8 from github-bugzi...@puremagic.com 2013-03-10 13:28:37 PDT --- Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/73162f3008cbe2842c32f9e6ac9bdb0a0c155bf

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 --- Comment #7 from github-bugzi...@puremagic.com 2013-03-10 13:27:41 PDT --- Commit pushed to 2.062 at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/e7489b375a3cf80179ab678ccdea2d1a0a6491d7

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 --- Comment #6 from github-bugzi...@puremagic.com 2013-03-10 13:23:47 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/a90fa90bf975cf5db5f1f490735692abafc9be92

[Issue 9665] Structure constant members can not be initialized if have opAssign

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9665 --- Comment #15 from Maxim Fomin 2013-03-10 13:16:15 PDT --- (In reply to comment #14) > (In reply to comment #13) > > (In reply to comment #9) > > > This is an insufficiency in D's design. I think we should approach this > > > the > > > same

[Issue 7260] "g" on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #9 from Dmitry Olshansky 2013-03-10 12:38:45 PDT --- (In reply to comment #8) > > Then once "g" is off we could either make .all a nop. > > Alternative is to make it opaque object that has 2 methods only .first/.all. > > The th

[Issue 9665] Structure constant members can not be initialized if have opAssign

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9665 --- Comment #14 from Andrei Alexandrescu 2013-03-10 12:33:50 PDT --- (In reply to comment #13) > (In reply to comment #9) > > This is an insufficiency in D's design. I think we should approach this the > > same way as super() invocation and co

[Issue 9157] RDMD: Add support for the Unilink linker

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9157 --- Comment #3 from Andrej Mitrovic 2013-03-10 12:03:39 PDT --- (In reply to comment #2) > Wouldn't this be better to implement as a wrapper around Unilink, which takes > a > OPTLINK-like command line? Then you can still use dmd to invoke lin

[Issue 7260] "g" on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #8 from Dmitry Olshansky 2013-03-10 11:54:55 PDT --- (In reply to comment #7) > (In reply to comment #5) > > > match(someString, pattern).all //range of all matches > > match(someString, pattern).first //only the first one > > mat

[Issue 9683] New: RDMD: Emit error on missing or unexpected main function

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9683 Summary: RDMD: Emit error on missing or unexpected main function Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement

[Issue 9672] mixin within cyclic import causes undefined properties

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9672 --- Comment #3 from github-bugzi...@puremagic.com 2013-03-10 11:44:08 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/c4940e0a61d88644b1b7f15b3db631bbeac4345

[Issue 7260] "g" on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #7 from bearophile_h...@eml.cc 2013-03-10 11:09:31 PDT --- (In reply to comment #5) > match(someString, pattern).all //range of all matches > match(someString, pattern).first //only the first one > match(someString, pattern) // usin

[Issue 7260] "g" on default in std.regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7260 --- Comment #6 from Dmitry Olshansky 2013-03-10 10:43:30 PDT --- (In reply to comment #4) > If changing std.regex.regex is not possible, then an alternative solution is > to > introduce the new little function "std.regex.re", that repeats on

[Issue 5003] regex(replace with delegate) sample doesn't work

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5003 Dmitry Olshansky changed: What|Removed |Added AssignedTo|dmitry.o...@gmail.com |nob...@puremagic.com --- Comment #4

[Issue 9579] std.regex.replace format argument should not require same constness as target string

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9579 Dmitry Olshansky changed: What|Removed |Added Keywords||pull CC|

[Issue 9682] New: group(SortedRange) ==> SortedRange

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9682 Summary: group(SortedRange) ==> SortedRange Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component:

[Issue 9571] linkage issue when using separate compilation and closures

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9571 --- Comment #2 from deadalnix 2013-03-10 08:23:54 PDT --- (In reply to comment #1) > I'm seeing a similar error with Win64: > > a.obj : error LNK2019: unresolved external symbol > _D1b3fooFC1b1AZv12__lambda1404MFC1b1CZC1b1C referenced in funct

[Issue 9571] linkage issue when using separate compilation and closures

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9571 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Comm

[Issue 9675] cyclic import causes forward reference to template error

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9675 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 9672] mixin within cyclic import causes undefined properties

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9672 --- Comment #2 from Kenji Hara 2013-03-10 07:58:48 PDT --- *** Issue 9675 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail beca

[Issue 9672] mixin within cyclic import causes undefined properties

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9672 Kenji Hara changed: What|Removed |Added Keywords||pull --- Comment #1 from Kenji Hara 2013

[Issue 9681] New: std.variant.Algebraic with const members

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9681 Summary: std.variant.Algebraic with const members Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: accepts-invalid Severity: normal

[Issue 9528] std.array.appender can't append elements with const members

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9528 --- Comment #3 from rswhi...@googlemail.com 2013-03-10 05:38:51 PDT --- (In reply to comment #2) > The problem is that appender is making the double assuption that unqual > implies > assignability, and that copyiable implies assignability (empa

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 Maxim Fomin changed: What|Removed |Added Keywords|patch |pull CC|

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 --- Comment #4 from Rainer Schuetze 2013-03-10 03:38:56 PDT --- Arg, I modified the disassembly after trying the fix, so please don't be confused by the generated code bytes, the original code did not have the 0x48 prefix: 0020: 8

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 Rainer Schuetze changed: What|Removed |Added Keywords||patch --- Comment #3 from Rainer Sch

[Issue 9674] std.algorithm.filter problems with non-deterministic _input.front

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9674 --- Comment #9 from timon.g...@gmx.ch 2013-03-10 01:55:54 PST --- (In reply to comment #8) > (In reply to comment #7) > > (In reply to comment #6) > > > (In reply to comment #4 and #5) > > > > > > > The code depends on front of the source range

[Issue 9665] Structure constant members can not be initialized if have opAssign

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9665 --- Comment #13 from Maxim Fomin 2013-03-10 01:53:08 PST --- (In reply to comment #9) > This is an insufficiency in D's design. I think we should approach this the > same way as super() invocation and construction of qualified objects This is

[Issue 9587] rdmd now fails to compile due to Phobos changes

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9587 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9622] Range violation in rdmd

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9622 Vladimir Panteleev changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 8605] rdmd aborts during link

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8605 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 9157] RDMD: Add support for the Unilink linker

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9157 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Comm

[Issue 8230] rdmd -lib -offilename ignores output filename

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8230 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 6535] RDMD outputs broken library files

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6535 Vladimir Panteleev changed: What|Removed |Added CC||thelastmamm...@gmail.com --- Comm

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 --- Comment #2 from Rainer Schuetze 2013-03-10 01:18:18 PST --- *** Issue 9678 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mai

[Issue 9677] Crash on setting length property of array VC 2012 64 bit

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9677 Rainer Schuetze changed: What|Removed |Added Keywords||wrong-code CC|

[Issue 9678] std.file.getcwd crash on Win 64, 0xc0000005

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9678 Rainer Schuetze changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 8173] rdmd -g --build-only main looses debug info

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8173 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Comm

[Issue 7899] rdmd doesn't compile using dmd 2.059

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7899 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 3449] const and invariant struct members do not behave according to spec

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3449 Walter Bright changed: What|Removed |Added Platform|Other |All Version|2.035

[Issue 9280] Runtime range violation with named capture groups in regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9280 Dmitry Olshansky changed: What|Removed |Added Keywords||pull --- Comment #3 from Dmitry Ols

[Issue 8529] ctRegex - named submatch - hash-table exception

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8529 --- Comment #4 from Dmitry Olshansky 2013-03-10 01:08:30 PST --- (In reply to comment #1) > (In reply to comment #0) > > Reported on v2.060 (but no version seems to work). > > > > The code is based on the opIndex example from: > > http://dlan

[Issue 6628] [RDMD] Ability to choose which DMD to use.

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6628 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 3449] const and invariant struct members do not behave according to spec

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3449 --- Comment #22 from github-bugzi...@puremagic.com 2013-03-10 00:57:23 PST --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/78e4dad96beccf795de36302feeb02d733553d

[Issue 9280] Runtime range violation with named capture groups in regex

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9280 Dmitry Olshansky changed: What|Removed |Added CC||wyr...@gmx.net --- Comment #2 from

[Issue 8529] ctRegex - named submatch - hash-table exception

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8529 Dmitry Olshansky changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 6622] rdmd --makedepend lists "dmd.conf" and "dmd"

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6622 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 6431] [RDMD] Modifying a library doesn't trigger a rebuild

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6431 --- Comment #2 from Vladimir Panteleev 2013-03-10 10:43:35 EET --- Ultimately, for this to work correctly all the time, rdmd would need to know where the linker will look for library files. This isn't really realistic as it depends on the link

[Issue 6431] [RDMD] Modifying a library doesn't trigger a rebuild

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6431 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Comm

[Issue 6370] [RDMD] fails to link when using etc.c.sqlite3

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6370 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 5782] Few things about rdmd

2013-03-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5782 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|