BUG: interpolateXY was not creating correct type. Only worked for scalarField.

This commit is contained in:
mattijs
2010-05-12 15:52:50 +01:00
parent 925202da2e
commit 322ccff48f

View File

@ -41,7 +41,7 @@ Field<Type> interpolateXY
const Field<Type>& yOld
)
{
scalarField yNew(xNew.size());
Field<Type> yNew(xNew.size());
forAll(xNew, i)
{