Skip to content
Snippets Groups Projects
Commit fa6d183d authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Fix wrong std::cerr at end of output.

It should be std::endl.
Courtesy of GCC 5-svn, it refuses to compile these.
parent ba7d7e80
No related branches found
No related tags found
No related merge requests found
...@@ -266,7 +266,7 @@ int testEntryConsistency() ...@@ -266,7 +266,7 @@ int testEntryConsistency()
if(!Dune::FloatCmp::eq(static_cast<const double&>(m[4][4]),4.0)) if(!Dune::FloatCmp::eq(static_cast<const double&>(m[4][4]),4.0))
++ret; ++ret;
if(ret) if(ret)
std::cerr<<"ERROR: Entries are not consistent"<<std::cerr; std::cerr<<"ERROR: Entries are not consistent"<<std::endl;
return ret; return ret;
} }
......
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