-
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
Renamed likely macro to avoid name collision #23320
Conversation
The likely and unlikely macros were renamed to LIKELY and UNLIKELY to avoid name collisions with a function in boost. Using all capital letters is the C family standard for naming macros so best to follow convention.
The code-checks are being triggered in jenkins. |
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-23320/4811 Code check has found code style and quality issues which could be resolved by applying a patch in https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-23320/4811/git-diff.patch You can run |
Changes required by automated code-checks
The code-checks are being triggered in jenkins. |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-23320/4816 |
A new Pull Request was created by @Dr15Jones (Chris Jones) for master. It involves the following packages: CondFormats/SiPixelObjects @perrotta, @smuzaffar, @civanch, @Dr15Jones, @arunhep, @emeschi, @ianna, @mdhildreth, @cmsbuild, @mommsen, @franzoni, @kpedro88, @cerminar, @slava77, @ggovi, @lpernie can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
The tests are being triggered in jenkins. |
please test |
The tests are being triggered in jenkins. |
Comparison job queued. |
Comparison is ready Comparison Summary:
|
+1
|
+1 |
@fabiocos , can we merge this? It is just a technical update. |
+1 |
merge |
The likely and unlikely macros were renamed to LIKELY and
UNLIKELY to avoid name collisions with a function in boost.
Using all capital letters is the C family standard for naming
macros so best to follow convention.