-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
[clang] Deduplicate FinishTemplateArgumentDeduction
helper function in SemaTemplateDeduction.cpp
.
#92224
Comments
@llvm/issue-subscribers-clang-frontend Author: Haojian Wu (hokein)
In `SemaTemplateDeduction.cpp`, we have two duplicated versions of [`FinishTemplateArgumentDeduction`](https://github.com/llvm/llvm-project/blob/main/clang/lib/Sema/SemaTemplateDeduction.cpp#L3192). And after #89358, we have three duplications.
|
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: Haojian Wu (hokein)
In `SemaTemplateDeduction.cpp`, we have two duplicated versions of [`FinishTemplateArgumentDeduction`](https://github.com/llvm/llvm-project/blob/main/clang/lib/Sema/SemaTemplateDeduction.cpp#L3192). And after #89358, we have three duplications.
|
@hokein |
If this is still something that needs to be tackled I can open a PR for it |
Yes! Thanks in advance |
Spending some time to work on this today/this upcoming week. I'm curious if keeping the same 3 overload functions and split out common logic to some util functions would be ideal? Looks like the parameters of all 3 are slightly different but all have some similar underlying logic |
Hi @akielaries are you working on this or can I work on this? Can you please confirm.. Thanks |
@rajkumarananthu All yours! |
@hokein I guess we still care about this issue! No? |
In
SemaTemplateDeduction.cpp
, we have two duplicated versions ofFinishTemplateArgumentDeduction
. And after #89358, we have three duplications.The text was updated successfully, but these errors were encountered: