[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2022-08-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 RazvanN changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2022-08-16 Thread d-bugmail--- via Digitalmars-d-bugs
--- @RazvanN7 created dlang/dmd pull request #14372 "Fix Issue 20365 - Copy constructor not invoked on static arrays of structs but the postblit works" fixing this issue: - Fix Issue 20365 - Copy constructor not invoked on static arrays of structs but the postblit works https://github.com/dlan

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2022-07-05 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 --- Comment #5 from RazvanN --- (In reply to kinke from comment #1) > Let's include CatAssign as well for completeness: > > S[] c; > c ~= a; // no copy ctor calls, but 4 postblits The CatAssign example seems to have been fixed, but the initial assi

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2022-02-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 RazvanN changed: What|Removed |Added CC||ilyayaroshe...@gmail.com --- Comment #4 from Razva

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2021-11-06 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 Tomáš Chaloupka changed: What|Removed |Added Keywords||betterC CC|

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2019-11-06 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 RazvanN changed: What|Removed |Added CC||razvan.nitu1...@gmail.com --- Comment #3 from Razv

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2019-11-06 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 Suleyman Sahmi (سليمان السهمي) changed: What|Removed |Added CC||sahmi.soulaim...@gmail.com

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2019-11-06 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 --- Comment #2 from Suleyman Sahmi (سليمان السهمي) --- There is a whole jungle of pustblit calls in druntime that do not call the copy constructor yet. Just grep the word "postblit" in druntime source to get an idea. I contacted Razvan about it. --

[Issue 20365] Copy constructor not invoked on static arrays of structs but the postblit works

2019-11-06 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=20365 kinke changed: What|Removed |Added CC||ki...@gmx.net --- Comment #1 from kinke --- Let's i