dynamicList change

This commit is contained in:
mattijs
2008-09-17 11:53:14 +01:00
parent ecf18da9d4
commit c4c0f54fc6
42 changed files with 147 additions and 152 deletions

View File

@ -921,14 +921,7 @@ Foam::List<Foam::pointIndexHit> Foam::meshSearch::intersections
hits.shrink();
// Copy into straight list
List<pointIndexHit> allHits(hits.size());
forAll(hits, hitI)
{
allHits[hitI] = hits[hitI];
}
return allHits;
return hits;
}