Skip to content
Snippets Groups Projects
Commit 0baaabc1 authored by Martin Nolte's avatar Martin Nolte
Browse files

fix a signed/unsigned warning

I hope this is the correct of fixing this. Maybe Markus could take a short look
on this...

[[Imported from SVN: r1082]]
parent 7e23ef40
No related branches found
No related tags found
No related merge requests found
......@@ -163,8 +163,8 @@ namespace Dune {
typedef typename M::CreateIterator createiterator;
typedef typename M::block_type block;
typedef typename M::field_type K;
typedef typename std::map<int,int> map;
typedef typename std::map<int,int>::iterator mapiterator;
typedef std::map<size_t, int> map;
typedef typename map::iterator mapiterator;
// symbolic factorization phase, store generation number in first matrix element
crowiterator endi=A.end();
......
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