-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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 edmDumpClassVersion call for CondFormats/L1TObjects #47184
base: master
Are you sure you want to change the base?
Fix edmDumpClassVersion call for CondFormats/L1TObjects #47184
Conversation
- added missing include - corrected include guard
edmDumpClassVersion was failing with ROOT failing to handle the std::make_pair call. The emplace method is more efficient anyway.
cms-bot internal usage |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-47184/43423 |
A new Pull Request was created by @Dr15Jones for master. It involves the following packages:
@aloeliger, @atpathak, @cmsbuild, @consuegs, @epalencia, @francescobrivio, @perrotta can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
+1 Size: This PR adds an extra 24KB to repository Comparison SummarySummary:
|
|
||
#include <memory> | ||
#include <iostream> | ||
#include <vector> | ||
#include <map> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Dr15Jones do I understand correctly that this additional include
statement is the actual fix, while the rest (namely insert
-> emplace
) is just performance improvement?
+1
|
PR description:
The IB run of edmDumpClassVersion was failing for CondFormat/L1TObjects. These small changes fixed the problem.
PR validation:
Code compiles. Running edmDumpClassVersion explicitly succeeds without issuing any Error messages.
resolves #47177