Skip to content

Commit

Permalink
Merge pull request #32321 from cms-sw/smuzaffar-patch-3
Browse files Browse the repository at this point in the history
[11.2.X][clang] Initialize data member to fix clang errors
  • Loading branch information
cmsbuild authored Nov 29, 2020
2 parents e5a63b3 + 5ca63ae commit 29af54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhysicsTools/PatAlgos/plugins/PATTriggerProducer.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ namespace pat {
map_[filter].push_back(PathAndFlags(path, pathIndex, lastFilter, l3Filter));
}
std::map<std::string, std::vector<PathAndFlags> > map_;
const std::vector<PathAndFlags> empty_;
const std::vector<PathAndFlags> empty_ = {};
};
ModuleLabelToPathAndFlags moduleLabelToPathAndFlags_;
};
Expand Down

0 comments on commit 29af54e

Please sign in to comment.