-
-
Notifications
You must be signed in to change notification settings - Fork 741
std.math: №4, workaround for intrinsics #3014
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
Conversation
dlang/phobos#3014 depends on this PR.
LGTM |
dlang/phobos#3014 depends on this PR.
@9il do you have anything to add here? |
No, I have not. Other stuff like |
Auto-merge toggled on |
Thanks! |
thank you |
std.math: №4, workaround for intrinsics
double rndtol(double x) @safe pure nothrow @nogc { return rndtol(cast(real)x); } | ||
//FIXME | ||
///ditto | ||
float rndtol(float x) @safe pure nothrow @nogc { return rndtol(cast(real)x); } |
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 did this get merged? The return type is obviously wrong!
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.
O_o. I will create new PR right now
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.
Thanks! PR #3166
Depends on dlang/dmd#4425