Skip to content
Snippets Groups Projects
Commit bae74211 authored by Henry Weller's avatar Henry Weller
Browse files

postProcess: catch missing field errors to process further time-directories

parent bc6485b8
Branches
Tags
No related merge requests found
......@@ -105,20 +105,20 @@ if (argList::postProcess(argc, argv))
functionObjectList::New(args, runTime, functionObjectsDict);
}
#include INCLUDE_FILE(CREATE_FIELDS)
#ifdef CREATE_FIELDS_2
#include INCLUDE_FILE(CREATE_FIELDS_2)
#endif
#ifdef CREATE_FIELDS_3
#include INCLUDE_FILE(CREATE_FIELDS_3)
#endif
FatalIOError.throwExceptions();
try
{
#include INCLUDE_FILE(CREATE_FIELDS)
#ifdef CREATE_FIELDS_2
#include INCLUDE_FILE(CREATE_FIELDS_2)
#endif
#ifdef CREATE_FIELDS_3
#include INCLUDE_FILE(CREATE_FIELDS_3)
#endif
functionObjectsPtr->execute(true);
}
catch (IOerror& err)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment