BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / dataConversion / foamToEnsight / checkMeshMoving.H
blob123036f63afe9d1a30c205fce0efc311125d6785
1 // check for "points" in all of the result directories
3 bool meshMoving = true;
4 if (Times.size() > 2)
6     for (label n1=2; n1<Times.size() && meshMoving; ++n1)
7     {
8         meshMoving = IOobject
9         (
10             "points",
11             Times[n1].name(),
12             polyMesh::meshSubDir,
13             mesh,
14             IOobject::NO_READ
15         ).headerOk();
16     }
18 else
20     meshMoving = false;