Skip to content
Snippets Groups Projects
Commit 19369e50 authored by Tobias Malkmus's avatar Tobias Malkmus
Browse files

avoid using typename outside templates (not compatible with older gcc)

parent f4f69951
No related branches found
No related tags found
No related merge requests found
...@@ -279,7 +279,7 @@ namespace ALUGrid ...@@ -279,7 +279,7 @@ namespace ALUGrid
inline int MpAccessLocal::recvLink ( int i ) const inline int MpAccessLocal::recvLink ( int i ) const
{ {
alugrid_assert( _currentRecvLinkage ); alugrid_assert( _currentRecvLinkage );
const typename linkage_t::const_iterator pos = _currentRecvLinkage->find( i ); const linkage_t::const_iterator pos = _currentRecvLinkage->find( i );
alugrid_assert( pos != _currentRecvLinkage->end() ); alugrid_assert( pos != _currentRecvLinkage->end() );
return pos->second; return pos->second;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment