Skip to content

Commit

Permalink
[11.2.X][clang] Initialize data member to fix clang errors about expl…
Browse files Browse the repository at this point in the history
…icit deleted def-constructor

backport of cms-sw#32307
  • Loading branch information
smuzaffar authored and ebrondol committed Dec 2, 2020
1 parent 044948a commit ae2b623
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 ae2b623

Please sign in to comment.