From b227751efe54ba6d8e428f4cfe0b67ea68c7d9f1 Mon Sep 17 00:00:00 2001
From: mattijs <mattijs>
Date: Thu, 30 Dec 2010 21:28:39 +0000
Subject: [PATCH] BUG: cyclicPolyPatch: transformPosition did not assign

---
 .../polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C
index 0010c5ecc42..d983606b5db 100644
--- a/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C
+++ b/src/OpenFOAM/meshes/polyMesh/polyPatches/constraint/cyclic/cyclicPolyPatch.C
@@ -694,7 +694,7 @@ void Foam::cyclicPolyPatch::transformPosition(pointField& l) const
 {
     if (!parallel())
     {
-        Foam::transform(forwardT(), l);
+        l = Foam::transform(forwardT(), l);
     }
     else if (separated())
     {
-- 
GitLab