-
-
Notifications
You must be signed in to change notification settings - Fork 727
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
std.math: Remove deprecated creal functions #7473
Conversation
Thanks for your pull request, @ibuclaw! Bugzilla referencesYour PR doesn't reference any Bugzilla issue. If your PR contains non-trivial changes, please reference a Bugzilla issue or create a manual changelog. Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub run digger -- build "master + phobos#7473" |
Depends on dlang/dmd#11123 |
cf32d1a
to
5b37295
Compare
Did someone in the dmd repo break the ddoc build? |
d0c4a3b
to
b1ee26f
Compare
First deprecation was in Jan 2018. Unittests have been copied across to std.complex where appropirate.
Freebsd/32 is green, so knock wood the rest should follow... |
Buildkite looks unrelated. |
}} | ||
} | ||
|
||
import std.meta : AliasSeq; |
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.
Why was this removed ? It's a breaking change.
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.
I'm having flashbacks here – didn't we fix selective imports to be private a few years ago (i.e. the infamous "bug 314")? Edit: Ah, there are public:
s in some random places all over that (multi-kloc) file. In case anyone ever wondered why that is a bad idea…
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.
As @dnadlinger said, did not anticipate there being a public:
being in effect here.
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.
First deprecation was in Jan 2018.
Unittests have been copied across to std.complex where appropirate.