File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ class Frame {
208208 // / @returns A const reference to the collection if it is available or to
209209 // / an empty (static) collection
210210 template <CollectionType CollT>
211- const CollT& get (const CollT::value_type& object) const ;
211+ const CollT& get (const typename CollT::value_type& object) const ;
212212
213213 // / Get the collection pointer to which the passed object belongs from the
214214 // / Frame.
@@ -406,7 +406,7 @@ const CollT& Frame::get(const std::string& name) const {
406406}
407407
408408template <CollectionType CollT>
409- const CollT& Frame::get (const CollT::value_type& object) const {
409+ const CollT& Frame::get (const typename CollT::value_type& object) const {
410410 const auto name = m_self->getIDTable ().name (object.id ().collectionID );
411411 return get<CollT>(name.value_or (" " ));
412412}
You can’t perform that action at this time.
0 commit comments