[Issue 10960] Copying a const value type should yield unqual

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10960 Iain Buclaw changed: What|Removed |Added Priority|P2 |P3 --

[Issue 10960] Copying a const value type should yield unqual

2018-10-18 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10960 Mathias LANG changed: What|Removed |Added CC||pro.mathias.l...@gmail.com --- Comment #3

[Issue 10960] Copying a const value type should yield unqual

2013-09-03 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10960 --- Comment #1 from bearophile_h...@eml.cc 2013-09-03 16:35:12 PDT --- (In reply to comment #0) returning a const value type by value should be stripped of its constness, since it is not the original value being returned, but a copy. The

[Issue 10960] Copying a const value type should yield unqual

2013-09-03 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=10960 --- Comment #2 from hst...@quickfur.ath.cx 2013-09-03 16:56:05 PDT --- Oh I see. I misunderstood your question, my bad. :) Nevertheless, both issues are worth consideration. The unqual issue should be fixed, definitely. About your actual