Conversation
|
Thanks for your pull request and interest in making D better, @edi33416! 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 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 fetch digger
dub run digger -- build "master + phobos#6881" |
std/conv.d
Outdated
| assert(iss.ii == [1, 2]); | ||
| } | ||
| /// ditto | ||
| T emplace(T, Args...)(T chunk, auto ref Args args); |
There was a problem hiding this comment.
Don't forget to include the template constraints for the docs - e.g. if (is(T == class)), IIRC, for this overload.
There was a problem hiding this comment.
I don't think I can add the template constraint in the function declaration. I tried to do that, but I couldn't get it to compile.
There was a problem hiding this comment.
Since this will only exist when building the docs, you can use a full function definition with a trivial body - e.g. { return chunk; }
There was a problem hiding this comment.
@ZombineDev added the template constraints for the docs.
f85acb3 to
e799105
Compare
|
On the auto tester there were a couple of OOM failures which I restarted, but also one failure on Windows: On BuildKite there the following two errors: (when building the druntime benchmark, which uses phobos) and: (simply style check warnings) |
|
This has been done in: #7745 . Closing. |
Remove code duplication by using the
druntimecore.lifetimeimplementation.This depends on this PR.