Skip to content

Commit

Permalink
Remove use of boost::mpl::vector for dependent records (#527)
Browse files Browse the repository at this point in the history
Update dependent records declarations to use edm::mpl::Vector instead of boost::mpl::vector, following cms-sw#30874.
  • Loading branch information
fwyzard committed Oct 8, 2020
1 parent 06eb12f commit 8742dfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RecoLocalCalo/HcalRecAlgos/interface/HcalCombinedRecord.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

template <typename... Sources>
class HcalCombinedRecord : public edm::eventsetup::DependentRecordImplementation<HcalCombinedRecord<Sources...>,
boost::mpl::vector<Sources...>> {
edm::mpl::Vector<Sources...>> {
public:
using DependencyRecords = std::tuple<Sources...>;
};
Expand Down

0 comments on commit 8742dfc

Please sign in to comment.