Add bookmark table to std.typecons#5642
Closed
wilzbach wants to merge 276 commits intodlang:masterfrom
Closed
Conversation
osmodel.mak: add comments
Apply Dscanner checks only to specific modules merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
Fix long lines in Phobos merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
Fix Ddoc comments merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
Fix booktable in std.traits merged-on-behalf-of: Petar Kirov <ZombineDev@users.noreply.github.com>
DScanner: Enable a check blacklist for a gradual transition merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
Merge remote-tracking branch 'upstream/stable' into merge_stable
…ement std.range.interfaces.InputRange without having to call inputRangeObject().
Re-add has_public_example to circleci.sh for legacy compatibility merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
Issue 12866: Allows concatenating of std.container.array with static arrays as T. merged-on-behalf-of: Petar Kirov <ZombineDev@users.noreply.github.com>
The fptan instruction pushes a 1.0 onto the FPU register stack after a successful operation, but when abs(input) >= 2^63 the C2 flag is set to indicate that the input was out of bounds, and it doesn't push the 1.0. Prior to this PR, the top value of the FPU stack was popped irrespective of whether C2 was set, which in the case of an out-of-bounds input caused the input to be removed from the stack and ultimately resulted in an incorrect return value of -nan. This PR changes this behavior, only popping after fptan when C2 was not set. See: http://x86.renejeschke.de/html/file_module_x86_id_109.html * Added unit tests for handling out-of-range inputs of fptan
Fix tan returning -nan for inputs where abs(x) >= 2^63 merged-on-behalf-of: Petar Kirov <ZombineDev@users.noreply.github.com>
This avoids recompilation of DScanner when a file in Phobos has been changed. DScanner only needs a recent Phobos version to be built once.
Dscanner Makefile: separate target + order-only dependencies merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
Issue 17224 - Foreach documentation still refers to TypeTuples, rather than AliasSequences merged-on-behalf-of: Jack Stouffer <jack@jackstouffer.com>
std.concurrency: Fix "Synposis" typo merged-on-behalf-of: H. S. Teoh <quickfur@users.noreply.github.com>
Support abstract UnixAddress merged-on-behalf-of: Vladimir Panteleev <github@thecybershadow.net>
Member
|
Don't know what to tell you. Stable itself has been failing for a while now: |
At the moment formattedWrite takes output range by value. It prevents to pass non-copyable ranges.
Remove extra semicolon merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
formattedWrite should take output range by reference merged-on-behalf-of: Andrei Alexandrescu <andralex@users.noreply.github.com>
Contributor
Author
|
…ckage std.range.package - add asserts/static asserts for unused variables in unittests merged-on-behalf-of: Andrei Alexandrescu <andralex@users.noreply.github.com>
d762064 to
8dfcb49
Compare
Contributor
Author
|
Argh sorry - something went wrong here, sorry for the noise. I have to open a new PR anyhow to the GH API bug :/ |
Contributor
Author
I accidentally rebased the PR against
-> #5650 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Recreated #5639 due to the current CI blockage from GH (GH's hook don't work anymore on Phobos after a rebase).
Before:
After:
Other interesting modules