[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-06-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 --- Comment #16 from Denis Shelomovskij 2013-06-10 16:54:37 MSD --- As mixing -inline/non-inline modules may result in a wrong code because of Issue 9193 one can use "-inline" only for toy D projects. -- Configure issuemail: http://d.puremag

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-06-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Denis Shelomovskij changed: What|Removed |Added CC||verylonglogin@gmail.com --- C

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-06-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Denis Shelomovskij changed: What|Removed |Added CC||torar...@gmail.com --- Comment #1

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-06-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Denis Shelomovskij changed: What|Removed |Added CC||h...@exc.eu --- Comment #13 from

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-06-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Denis Shelomovskij changed: What|Removed |Added CC||egu...@gmail.com --- Comment #12

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-03-01 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 --- Comment #11 from bearophile_h...@eml.cc 2013-03-01 04:42:22 PST --- import std.array: array; import std.algorithm: map; void main() { int[] foo; auto r1 = map!(i => foo[0])([0]); auto r2 = array(r1); } Gives (dmd 2.063 alpha):

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2013-02-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Jonathan M Davis changed: What|Removed |Added CC||jmdavisp...@gmx.com --- Comment #10

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-02-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 --- Comment #9 from bearophile_h...@eml.cc 2012-02-21 14:18:15 PST --- See also Issue 7559 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-02-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 --- Comment #8 from Don 2012-02-06 10:00:46 PST --- (In reply to comment #7) > I believe this is the same as bug 5939. I don't think bug 5939 involves -inline, but this one definitely does. Unless there are plans to make compiler changes are t

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-02-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 --- Comment #7 from Walter Bright 2012-02-05 22:08:20 PST --- I believe this is the same as bug 5939. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-02-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 David Simcha changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-02-05 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-02-05 Thread d-bugmail
/7766bbd9857ab5ad5b1d5ff0444cb7088823a793 fix Issue 4841 - -inline wrecks nested struct with alias template parameter (An array()/map inlining problem) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail because: ---

[Issue 4841] -inline wrecks nested struct with alias template parameter (An array()/map inlining problem)

2012-01-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4841 Don changed: What|Removed |Added Target Milestone|--- |2.059 Summary|-inline wrecks delegate