mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Corrected ambiguous construction from tmp msgs (llvm/clang)
This commit is contained in:
@ -913,8 +913,8 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
// Info<< "span " << span << endl;
|
// Info<< "span " << span << endl;
|
||||||
|
|
||||||
pointField start = searchSurf.faceCentres() - span*normals;
|
pointField start(searchSurf.faceCentres() - span*normals);
|
||||||
pointField end = searchSurf.faceCentres() + span*normals;
|
pointField end(searchSurf.faceCentres() + span*normals);
|
||||||
const pointField& faceCentres = searchSurf.faceCentres();
|
const pointField& faceCentres = searchSurf.faceCentres();
|
||||||
|
|
||||||
List<List<pointIndexHit> > allHitInfo;
|
List<List<pointIndexHit> > allHitInfo;
|
||||||
|
|||||||
Reference in New Issue
Block a user