-
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
DQM/L1TMonitor: definite static const int members #7249
DQM/L1TMonitor: definite static const int members #7249
Conversation
The patch resolves issue with Clang compiler. N3690 (should be C++11 standard), 9.4.2/3 ... The member shall still be defined in a namespace scope if it is odr-used (3.2) in the program and the namespace scope definition shall not contain an initializer. 9.4.2/4 talks about how `const static` data members are being handled. Also standard says that no diagnostic is required by compiler. Signed-off-by: David Abdurachmanov <David.Abdurachmanov@cern.ch>
A new Pull Request was created by @davidlt for CMSSW_7_4_X. DQM/L1TMonitor: definite static const int members It involves the following packages: DQM/L1TMonitor @cmsbuild, @danduggan, @nclopezo, @deguio can you please review it and eventually sign? Thanks. |
+1 |
This pull request is fully signed and it will be integrated in one of the next CMSSW_7_4_X IBs unless changes (tests are also fine). This pull request will be automatically merged. |
DQM/L1TMonitor: definite static const int members
The patch resolves issue with Clang compiler.
N3690 (should be C++11 standard), 9.4.2/3
9.4.2/3 talks about how
const static
data members are being handled.Also standard says that no diagnostic is required by compiler.
Signed-off-by: David Abdurachmanov David.Abdurachmanov@cern.ch