May 18, 2013 [Issue 9634] [CTFE] appending a slice of an array of structs to itself | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nils | http://d.puremagic.com/issues/show_bug.cgi?id=9634 Martin Nowak <code@dawg.eu> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |code@dawg.eu --- Comment #9 from Martin Nowak <code@dawg.eu> 2013-05-18 08:30:26 PDT --- This is related to bug 6052. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
May 21, 2013 [Issue 9634] [CTFE] appending a slice of an array of structs to itself | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nils | http://d.puremagic.com/issues/show_bug.cgi?id=9634 --- Comment #10 from Martin Nowak <code@dawg.eu> 2013-05-21 07:10:00 PDT --- This necessitates a workaround in Phobos. https://github.com/D-Programming-Language/phobos/pull/1290 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 07, 2013 [Issue 9634] [CTFE] appending a slice of an array of structs to itself | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nils | http://d.puremagic.com/issues/show_bug.cgi?id=9634 --- Comment #11 from github-bugzilla@puremagic.com 2013-06-07 10:53:57 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/ed349e1a519e2245c9adc0789deb09350d8511c0 workaround issue 9634 https://github.com/D-Programming-Language/phobos/commit/db7e325f6d4a26294976b8fb9ebc69124d5056bc Merge pull request #1290 from blackwhale/regex-9634 Workaround issue 9634 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 18, 2013 [Issue 9634] [CTFE] wrong code concatenating arrays of structs | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nils | http://d.puremagic.com/issues/show_bug.cgi?id=9634 Don <clugdbug@yahoo.com.au> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code Summary|[CTFE] appending a slice of |[CTFE] wrong code |an array of structs to |concatenating arrays of |itself |structs --- Comment #12 from Don <clugdbug@yahoo.com.au> 2013-06-17 23:48:12 PDT --- Reduced test case shows it doesn't even require ~=. --------- struct Bug9634 { int raw; } bool bug9634() { Bug9634[] jr = [Bug9634(42)]; Bug9634[] ir = jr ~ jr; assert(&ir[0] != &ir[1]); return true; } static assert(bug9634()); -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 19, 2013 [Issue 9634] [CTFE] wrong code concatenating arrays of structs | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nils | http://d.puremagic.com/issues/show_bug.cgi?id=9634 --- Comment #13 from github-bugzilla@puremagic.com 2013-06-19 02:12:22 PDT --- Commit pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/baf2d607b6b723b498753b730b62b9b258a5659e Fix bug 9634 [CTFE] wrong code concatenating arrays of structs When concatenating, the array literals need to be duplicated, if they are CTFE values. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
June 19, 2013 [Issue 9634] [CTFE] wrong code concatenating arrays of structs | ||||
---|---|---|---|---|
| ||||
Posted in reply to Nils | http://d.puremagic.com/issues/show_bug.cgi?id=9634 yebblies <yebblies@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |yebblies@gmail.com Resolution| |FIXED --- Comment #14 from yebblies <yebblies@gmail.com> 2013-06-19 19:13:10 EST --- (hopefully) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation