-
-
Notifications
You must be signed in to change notification settings - Fork 747
Fix 24637 #9072
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
Fix 24637 #9072
Conversation
merge stable
Remove std.conv import from quickSortImpl
…g#9019) * Move `std.math.exponential.pow` implementation outside template * Fix compilation on Mac
Caught with grep -Er '\(\$[A-Za-z]'
for link in $(grep -Eor 'https?://[^\\)", ]+' | grep -v dlang.org \ | grep -Eo 'https?://.+'); do (printf "%s: " "$link"; curl -Is "$link" \ | head -n1) | grep -E '4..$'; done for link in $(grep -Eor '\\$\\(HTTP .+, ' | grep -v dlang.org \ | cut -d' ' -f2- | sed 's/, .*$//'); do out="$(curl -Is "$link")"; \ (! [ $? = 0 ] || printf '%s' "$out" | head -n1 | grep -Eq '4..') \ && printf '%s\\n' "$link"; done
It's implemented in Windows but it's not part of standard C. https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/fdopen
replace dead links Signed-off-by: Vladimir Panteleev <[email protected]> Signed-off-by: Nicholas Wilson <[email protected]> Merged-on-behalf-of: Nicholas Wilson <[email protected]>
Co-authored-by: Dennis Korpel <[email protected]>
Note: www.canonware.com/download/jemalloc/jemalloc-latest/doc/jemalloc.html jemalloc link isn't responding, and it now lives at jemalloc.net (see also https://github.com/jemalloc/jemalloc?tab=readme-ov-file#readme). Fixes Bugzilla Issue 24667 - goo.gl is going away.
Bugzilla 23300 - add testcase for std.array on scope InputRange
…rs from files in @safe code (dlang#9030)
The second opCast overload is necessary to allow built-in implicit conversions (e.g., mutable to const) to be performed explicitly via a cast expression. Nullable.opEquals depends on this behavior.
…_t length' without using 'data' property Add `length` property rather than `app[].length`. Also remove `@trusted` attribute from `@safe` function.
* fix long line linter error * Update package.d
…of fields in JSON objects
Avoid breaking code that do "final switch" oven JSONType.
Fix Issue 24823 - std.json: Allow optionally preserving the order of fields in JSON objects
Added 'Haiku' and 'Solaris' to 'system'.
* Add documentation from the Phobos 3 Design repo. Add section on Template Reduction by request of Walter. Split up documents for clarity. * Add README.md. Update documents using documents from the V3 Design Repo. * Move numeric to the math package.
…pt. (dlang#9069) * Remove Phobos 3 dub.sdl and replace it with the build_v3.d buid script. * Add environment bang to the build script. * Fix the Phobos v3 build script so that unit tests work on POSIX. --------- Co-authored-by: Jonathan M Davis <[email protected]>
|
Thanks for your pull request and interest in making D better, @thewilsonator! We are looking forward to reviewing it, and you should be hearing from a maintainer soon.
Please see CONTRIBUTING.md for more information. If you have addressed all reviews or aren't sure how to proceed, don't hesitate to ping us with a simple comment. Bugzilla references
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 "stable + phobos#9072" |
Rebases #9042