status was not cleared

This commit is contained in:
mattijs
2008-08-01 17:56:48 +01:00
parent e9d424b7a8
commit 57949f8e82
2 changed files with 8 additions and 3 deletions

View File

@ -570,7 +570,9 @@ public:
// region and split them.
autoPtr<mapPolyMesh> dupNonManifoldPoints();
//- Create baffle for every internal face where ownPatch != -1
//- Create baffle for every internal face where ownPatch != -1.
// External faces get repatched according to ownPatch (neiPatch
// should be -1 for these)
autoPtr<mapPolyMesh> createBaffles
(
const labelList& ownPatch,

View File

@ -233,10 +233,9 @@ void Foam::searchableSphere::findLineAll
{
info.setSize(start.size());
pointIndexHit near, far;
forAll(start, i)
{
pointIndexHit near, far;
findLineAll(start[i], end[i], near, far);
if (near.hit())
@ -260,6 +259,10 @@ void Foam::searchableSphere::findLineAll
info[i].setSize(1);
info[i][0] = far;
}
else
{
info[i].clear();
}
}
}
}