-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Removed lexical_cast boost dependency in CondCore #34932
Removed lexical_cast boost dependency in CondCore #34932
Conversation
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-34932/24745
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-34932/24750
|
A new Pull Request was created by @Purva-Chaudhari for master. It involves the following packages:
@malbouis, @yuanchao, @Martin-Grunewald, @cmsbuild, @tlampen, @ggovi, @pohsun, @francescobrivio, @tvami can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
@cmsbuild , please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-0031d0/17863/summary.html Comparison SummarySummary:
|
+alca |
+1 |
Pull request #34932 was updated. @malbouis, @yuanchao, @Martin-Grunewald, @cmsbuild, @tlampen, @ggovi, @pohsun, @francescobrivio, @tvami can you please check and sign again. |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-0031d0/17995/summary.html The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic:
You can see more details here: Comparison SummarySummary:
|
+1 |
@@ -82,7 +82,7 @@ namespace { | |||
auto paramValues = PlotBase::inputParamValues(); | |||
auto ip = paramValues.find("Scenarios"); | |||
if (ip != paramValues.end()) { | |||
auto input = boost::lexical_cast<std::string>(ip->second); | |||
auto input = ip->second; |
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.
So casting is not needed here?
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.
It is already of type string
@@ -116,7 +116,7 @@ namespace { | |||
auto paramValues = PlotBase::inputParamValues(); | |||
auto ip = paramValues.find("DetIds"); | |||
if (ip != paramValues.end()) { | |||
auto input = boost::lexical_cast<std::string>(ip->second); | |||
auto input = ip->second; |
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.
So casting is not needed here? (same as in SiPixelFEDChannelContainer_PayloadInspector.cc)
+1
|
hi @ggovi - any comments? |
+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. @perrotta, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
Remove boost lexical cast dependency in CondCore with corresponding stl alternatives
PR validation:
Passed on scram -b runtests (CondCore)
if this PR is a backport please specify the original PR and why you need to backport that PR:
@davidlange6 @vgvassilev