-
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
Rename inline c++ files to .icc #38904
Rename inline c++ files to .icc #38904
Conversation
please test |
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-38904/31338
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
please test |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-38904/31345
|
A new Pull Request was created by @fwyzard (Andrea Bocci) for master. It involves the following packages:
@smuzaffar, @Dr15Jones, @rekovic, @epalencia, @emeschi, @cecilecaillol, @makortel, @smorovic can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
-1 Failed Tests: Build BuildI found compilation error when building: >> Compiling /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/FastMonitoringService.cc >> Compiling /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/FedRawDataInputSource.cc >> Compiling /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/FileIO.cc >> Compiling /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/GlobalEventNumber.cc In file included from /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/GlobalEventNumber.cc:1: /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/poison/EventFilter/Utilities/interface/GlobalEventNumber.icc:1:2: error: #error THIS FILE HAS BEEN REMOVED FROM THE PACKAGE. 1 | #error THIS FILE HAS BEEN REMOVED FROM THE PACKAGE. | ^~~~~ /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/GlobalEventNumber.cc: In function 'bool evf::evtn::daq_board_sense(const unsigned char*)': /data/cmsbld/jenkins/workspace/ib-run-pr-tests/CMSSW_12_5_X_2022-07-31-0000/src/EventFilter/Utilities/src/GlobalEventNumber.cc:7:37: error: 'FEDHeader' has not been declared 7 | return (*(unsigned int *)(p + FEDHeader::length + DAQ_BOARDID_OFFSET * SLINK_WORD_SIZE / 2) >> |
afda143
to
a39dd4d
Compare
please test |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-38904/31404
|
Pull request #38904 was updated. @smuzaffar, @Dr15Jones, @rekovic, @epalencia, @emeschi, @cecilecaillol, @makortel, @smorovic can you please check and sign again. |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-23744d/26617/summary.html Comparison SummarySummary:
|
+core Thanks! |
+l1 |
+daq |
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, @rappoccio (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
Rename inline c++ files with different extensions (
*.impl
,*.inl
) to.icc
that is the most common one used in CMSSW:Move include files used by a single .cc file to the src/ directory.
No changes expected.