diff --git a/FWCore/Framework/interface/EventSetupRecord.h b/FWCore/Framework/interface/EventSetupRecord.h index 6644759b9e567..29f1349a3abf4 100644 --- a/FWCore/Framework/interface/EventSetupRecord.h +++ b/FWCore/Framework/interface/EventSetupRecord.h @@ -111,10 +111,9 @@ namespace edm { template bool get(char const* iName, HolderT& iHolder) const { - if - UNLIKELY(requireTokens_) { - throwCalledGetWithoutToken(heterocontainer::className(), iName); - } + if UNLIKELY (requireTokens_) { + throwCalledGetWithoutToken(heterocontainer::className(), iName); + } typename HolderT::value_type const* value = nullptr; ComponentDescription const* desc = nullptr; std::shared_ptr whyFailedFactory; @@ -136,10 +135,9 @@ namespace edm { template bool get(ESInputTag const& iTag, HolderT& iHolder) const { - if - UNLIKELY(requireTokens_) { - throwCalledGetWithoutToken(heterocontainer::className(), iTag.data().c_str()); - } + if UNLIKELY (requireTokens_) { + throwCalledGetWithoutToken(heterocontainer::className(), iTag.data().c_str()); + } typename HolderT::value_type const* value = nullptr; ComponentDescription const* desc = nullptr; std::shared_ptr whyFailedFactory; @@ -207,17 +205,22 @@ namespace edm { protected: template