digitalmars.D.bugs - [Issue 8284] New: [std.container] can't define Array!T, if T is Tuple!(size_t, size_t)
- d-bugmail puremagic.com (26/26) Jun 22 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8284
- d-bugmail puremagic.com (10/10) Aug 16 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8284
- d-bugmail puremagic.com (15/15) Sep 16 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8284
- d-bugmail puremagic.com (9/9) Nov 15 2012 http://d.puremagic.com/issues/show_bug.cgi?id=8284
http://d.puremagic.com/issues/show_bug.cgi?id=8284 Summary: [std.container] can't define Array!T, if T is Tuple!(size_t, size_t) Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody puremagic.com ReportedBy: tobias pankrath.net --- Comment #0 from Tobias Pankrath <tobias pankrath.net> 2012-06-22 08:47:21 PDT --- alias Tuple!(size_t, size_t) Pair; void main() { Array!Pair arr; } /usr/include/d/std/container.d(1653): Error: cannot compare const(Tuple!(ulong,ulong)[]) and const(Tuple!(ulong,ulong)[]) bug.d(12): Error: template instance std.container.Array!(Tuple!(ulong,ulong)) error instantiating -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Jun 22 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8284 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull, rejects-valid --- Comment #1 from Kenji Hara <k.hara.pg gmail.com> 2012-08-16 01:56:00 PDT --- https://github.com/D-Programming-Language/phobos/pull/750 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Aug 16 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8284 --- Comment #2 from github-bugzilla puremagic.com 2012-09-16 19:22:37 PDT --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/3c878f4b90670b46854fc66a09a8f68995fdb4ea Fix bug #8284 by adding const opEquals to std.typecons.Tuple To fix bug #8284 std.typecons.Tuple needs to have a const opEquals. Adds also a testcase for std.algorithm using std.typecons.Tuple as element type for std.container.Array. This pull request needs a dmd with pull 1075 to fix issue 8522. https://github.com/D-Programming-Language/phobos/commit/1122af373bbf1e805b4004835b2132bef8ae1a69 Merge pull request #750 from Panke/fix-8284 Fix bug #8284 by adding const opEquals to std.typecons.Tuple -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Sep 16 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8284 Kenji Hara <k.hara.pg gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Nov 15 2012