From 70ec93bbe72811a4de59b1bdbe362ee31d6783c7 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Tue, 15 Nov 2011 15:11:15 +0000 Subject: [PATCH] BUG: AMIInterpolation: tmp handling --- .../AMIInterpolation/AMIInterpolation/AMIInterpolation.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C index cae738707d8..aa99f46593f 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C @@ -1950,7 +1950,7 @@ Foam::AMIInterpolation<SourcePatch, TargetPatch>::interpolateToSource const BinaryOp& bop ) const { - return interpolateToSource(tFld, bop); + return interpolateToSource(tFld(), bop); } @@ -1987,7 +1987,7 @@ Foam::AMIInterpolation<SourcePatch, TargetPatch>::interpolateToTarget const BinaryOp& bop ) const { - return interpolateToTarget(tFld, bop); + return interpolateToTarget(tFld(), bop); } -- GitLab