Skip to content
Snippets Groups Projects
Commit e505c2d2 authored by scott snyder's avatar scott snyder
Browse files

PixelMonitoring: Fix clang warnings.

Braces in initializers.
parent eb12b181
No related branches found
No related tags found
No related merge requests found
......@@ -137,8 +137,8 @@ StatusCode PixelAthErrorMonAlg::fillHistograms( const EventContext& ctx ) const
is_fei4 = false;
}
// flagging/counting categorized errors per module.
bool has_err_cat[ErrorCategory::COUNT][nFEIBL2D] = {false};
int nerrors_cat_rodmod[ErrorCategoryRODMOD::COUNT][nFEIBL2D] = {0};
bool has_err_cat[ErrorCategory::COUNT][nFEIBL2D] = {{false}};
int nerrors_cat_rodmod[ErrorCategoryRODMOD::COUNT][nFEIBL2D] = {{0}};
// count number of words w/ MCC/FE flags per module
unsigned int num_femcc_errwords = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment