COMP: avoid ambiguous construct from tmp - utils/ mesh

This commit is contained in:
Mark Olesen
2010-12-20 10:36:59 +01:00
parent 5dc01ed6f0
commit 25951c0f74
3 changed files with 6 additions and 5 deletions

View File

@ -79,12 +79,13 @@ int main(int argc, char *argv[])
Info<< " Reading U" << endl;
volVectorField U(Uheader, mesh);
pointField newPoints =
pointField newPoints
(
zeroPoints
+ scaleFactor*pInterp.interpolate(U)().internalField();
+ scaleFactor*pInterp.interpolate(U)().internalField()
);
mesh.polyMesh::movePoints(newPoints);
mesh.write();
}
else