-
Notifications
You must be signed in to change notification settings - Fork 4.6k
[RECONSTRUCTION] Fix for virtual method inside a final class #49212
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
[RECONSTRUCTION] Fix for virtual method inside a final class #49212
Conversation
|
cms-bot internal usage |
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-49212/46542
|
|
A new Pull Request was created by @smuzaffar for master. It involves the following packages:
@cmsbuild, @jfernan2, @mandrenguyen can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
|
please test |
|
please test for CMSSW_16_0_CLANG_X |
|
-1 Failed Tests: Build BuildI found compilation warning when building: See details on the summary page. |
|
-1 Failed Tests: ClangBuild Clang BuildI found compilation warning while trying to compile with clang. Command used: See details on the summary page. |
5ad8b65 to
5109bc3
Compare
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-49212/46553
|
|
Pull request #49212 was updated. @cmsbuild, @jfernan2, @mandrenguyen, @srimanob can you please check and sign again. |
|
please test for CMSSW_16_0_CLANG_X |
|
please test |
|
+1 Size: This PR adds an extra 28KB to repository Comparison SummarySummary:
|
|
REMINDER @ftenchini, @sextonkennedy, @mandrenguyen: This PR was tested with #49211, please check if they should be merged together |
|
+1 |
|
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @mandrenguyen, @sextonkennedy, @ftenchini (and backports should be raised in the release meeting by the corresponding L2) |
|
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-0c4e4c/48828/summary.html Comparison SummarySummary:
|
|
+1 |
LLVM21 has a new warning
virtual method inside a final class and can never be overridden. This PR is to fix these warning. If these methods should remainvirtualthen may be we can then remove thefinalkeyword for the class.See #49208