[Issue 13615] stable sort not usable in @safe code

2016-09-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13615 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 13615] stable sort not usable in @safe code

2016-09-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13615 Walter Bright changed: What|Removed |Added See Also|

[Issue 13615] stable sort not usable in @safe code

2016-06-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13615 Walter Bright changed: What|Removed |Added Depends on||16139 --- Comment

[Issue 13615] stable sort not usable in @safe code

2016-06-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13615 --- Comment #2 from Walter Bright --- Better test case: @safe void foo() { import std.algorithm; // Showcase stable sorting string[] words = [ "aBc", "a", "abc", "b", "ABC", "c" ]; sort!("toUpper(a) <

[Issue 13615] stable sort not usable in @safe code

2016-06-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13615 --- Comment #1 from Walter Bright --- This sort() calls TimSortImpl.sort(). It is @system because it calls uninitializedArray(), which is an @system function. --

[Issue 13615] stable sort not usable in @safe code

2016-06-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13615 Walter Bright changed: What|Removed |Added Keywords||safe