-
Notifications
You must be signed in to change notification settings - Fork 455
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
Support @new @variadic #5364
Support @new @variadic #5364
Conversation
Would |
Also, it's kind of unnatural for me (and perhaps for many other users) that
"small diffs" means no changes to |
Yes, ideally no white space changes or in a separate commit. |
@bobzhang done 👍 |
No pressure, but it would be great if this gets included in v10.0. I continue to be available for resolving any reviews and change requests in the foreseeable future. |
@cannorin happy to take a look, but unsure what aspect should be checked. |
@cristianoc thank you! Since the PR is about modifying
|
OK I'll have a go. Might ask some basic question about the codebase. |
Also, the changelog should be updated. |
Thanks! I will work on changelog and CI tomorrow. |
Signed-off-by: Yuta Sato <[email protected]>
applied the reviews 🚀 |
hmm, it seems that the modified compiler is not used during CI run? I didn't stage the following files. Do I need to check in these files to make CI use the modified compiler?
|
I try to stage everything in a separate commit (so that it can be easily reverted) and see what happens |
Signed-off-by: Yuta Sato <[email protected]>
macos-arm didn't run but everything else is now green 🚀 |
Sometimes macOS-arm needs a bit of encouragement. |
* Support @new @variadic Signed-off-by: Yuta Sato <[email protected]> * [variadic-new] stage everything Signed-off-by: Yuta Sato <[email protected]> Co-authored-by: Yuta Sato <[email protected]>
* Support @new @variadic Signed-off-by: Yuta Sato <[email protected]> * [variadic-new] stage everything Signed-off-by: Yuta Sato <[email protected]> Co-authored-by: Yuta Sato <[email protected]>
Closes #5363.
This PR allows
@new
and@variadic
to be used simultaneously.