Skip to content
Snippets Groups Projects
Commit 5c492b68 authored by Markus Blatt's avatar Markus Blatt
Browse files

fixed unsigned/signed warning.

[[Imported from SVN: r1262]]
parent 87f27b57
No related branches found
No related tags found
No related merge requests found
......@@ -508,7 +508,7 @@ namespace Dune {
s<<col.index()<<": |";
} else {
if(count==skipcols) {
for(int i=0; i < rowtext.length(); i++)
for(typename std::string::size_type i=0; i < rowtext.length(); i++)
s<<" ";
s<<" ";
}
......
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