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

Only print message if there were no vertices pushed!

[[Imported from SVN: r3215]]
parent c7feb537
No related branches found
No related tags found
No related merge requests found
......@@ -1821,7 +1821,7 @@ namespace Dune
int count=0;
for(Iterator vertex=front_.begin(); vertex != end; ++vertex,++count)
stack_.push(*vertex);
if(MINIMAL_DEBUG_LEVEL>=4)
if(MINIMAL_DEBUG_LEVEL>3 && count==0)
Dune::dwarn<< " no vertices pushed!"<<std::endl;
}
......
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