-
Notifications
You must be signed in to change notification settings - Fork 5
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 clang warnings #387
Fix clang warnings #387
Conversation
Fixes clang errors
class EcalSampleMask; | ||
class EcalTimeBiasCorrections; | ||
class EcalPulseCovariance; | ||
struct EcalPulseCovariance; |
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.
@vkhristenko Does this (and below) conflict with your ECAL developments?
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.
if you mean forward decl changing class -> struct - should be fine. i see original one is a struct, therefore definitely should be fine.
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.
I was more thinking if your PR/developments are touching the same lines (for whatever reason) and thus leading to git merge conflicts.
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.
Ah, forward decls should be fine (line-wise).
Validation summaryReference release CMSSW_11_0_0_pre7 at 411b633
|
PR description:
This PR fixes the clang warnings reported in cms-sw#27983 (comment).
While compiling with clang, it complained about the
alignas
inSiPixelFedCablingMapGPU.h
I fixed those as well.PR validation:
Code compiles.