Skip to content
Snippets Groups Projects
Commit 322ccff4 authored by mattijs's avatar mattijs
Browse files

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

parent 925202da
No related merge requests found
......@@ -41,7 +41,7 @@ Field<Type> interpolateXY
const Field<Type>& yOld
)
{
scalarField yNew(xNew.size());
Field<Type> yNew(xNew.size());
forAll(xNew, i)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment