@@ -157,13 +157,13 @@ namespace edm {
157157
158158 template <typename KeyRefProd, typename CVal, typename KeyRef, typename SizeType, typename KeyReferenceHelper>
159159 inline typename AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::const_reference
160- AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::operator [](size_type n) const {
160+ AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::operator [](size_type n) const {
161161 return transientVector ()[n];
162162 }
163163
164164 template <typename KeyRefProd, typename CVal, typename KeyRef, typename SizeType, typename KeyReferenceHelper>
165165 inline typename CVal::const_reference
166- AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::operator [](KeyRef const & k) const {
166+ AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::operator [](KeyRef const & k) const {
167167 KeyRef keyRef = KeyReferenceHelper::get (k, ref_.id ());
168168 checkForWrongProduct (keyRef.id (), ref_.id ());
169169 return data_[keyRef.key ()];
@@ -172,7 +172,7 @@ namespace edm {
172172 template <typename KeyRefProd, typename CVal, typename KeyRef, typename SizeType, typename KeyReferenceHelper>
173173 template <typename K>
174174 inline typename CVal::const_reference
175- AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::operator [](edm::Ptr<K> const & k) const {
175+ AssociationVector<KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper>::operator [](edm::Ptr<K> const & k) const {
176176 static_assert (std::is_base_of<K, key_type>::value,
177177 " edm::Ptr's key type is not a base class of AssociationVector's item type" );
178178 checkForWrongProduct (k.id (), ref_.id ());
0 commit comments