-
-
Notifications
You must be signed in to change notification settings - Fork 609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove .sort / .reverse properties and adjust tests #6827
Conversation
0523dd9 to
b33fdc8
Compare
357606a to
1bfcef7
Compare
|
Doesn't |
f894e54 to
423499c
Compare
|
@mathias-lang-sociomantic I originally intended for the idgen change to be in a separate PR |
|
@andralex ready for merge. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx!
|
cc @MartinNowak for deployment as he sees fit |
415fe00 to
5cabbd0
Compare
|
There are still a few tests to fix up.. |
2e98876 to
32a035a
Compare
|
@MartinNowak this passes now. |
test/runnable/foreach4.d
Outdated
| @@ -840,7 +840,6 @@ void test26() | |||
| assert(i == 2); | |||
| assert(a.array[0] == 73); | |||
| assert(a.array[1] == 82); | |||
|
|
|||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
??
test/runnable/test12.d
Outdated
| return std.algorithm.cmp(this.str, s.str); | ||
| } | ||
| } | ||
|
|
||
| void test45() | ||
| { | ||
| import std.algorithm; | ||
| import std.range; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
??
test/runnable/test4.d
Outdated
| { | ||
| real[10] array; | ||
| real[] copy = array.dup; | ||
| copy.sort; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just delete this line?
test/runnable/wc2.d
Outdated
| @@ -66,7 +66,7 @@ int main (string[] args) | |||
| } | |||
|
|
|||
| printf("--------------------------------------\n"); | |||
|
|
|||
| import std.algorithm.sorting : sort; | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nooooo
285203b to
525d66b
Compare
|
@yebblies addressed your comments |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Short changelog notice, otherwise good to go from my side.
https://github.com/dlang/dmd/tree/master/changelog
|
thx you guys - @UplinkCoder changelog and we should be good to go |
|
@andralex Martin amended the changelog entry already |
|
PR for dlang.org: dlang/dlang.org#1672 |
as per title
This is a revamp of #6554