Skip to content
Snippets Groups Projects
Commit f99c30e4 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Don't abort when the order is not 2 -- simply warn and skip

[[Imported from SVN: r9859]]
parent 0b7f45e6
No related branches found
No related tags found
No related merge requests found
......@@ -440,7 +440,10 @@ public:
// We only do P2 spaces at the moment
if (order != 2)
abort();
{
std::cout << "Warning: CosseratVTKWriter only supports P2 spaces -- skipping" << std::endl;
return;
}
std::string fullfilename = filename + ".vtu";
......
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