From 30d29f230350d892e4a809c54d344d6a0b6ce7d0 Mon Sep 17 00:00:00 2001
From: Kutalmis Bercin <kutalmis.bercin@esi-group.com>
Date: Wed, 18 Dec 2024 12:15:27 +0000
Subject: [PATCH] COMP: fix SPDP compilation (fixes #3286)

---
 .../pointSmoothing/hexMeshSmootherMotionSolver.C          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C
index 78ccdaa6aae..8d053b2ad7d 100644
--- a/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C
+++ b/src/dynamicMesh/motionSolvers/displacement/pointSmoothing/hexMeshSmootherMotionSolver.C
@@ -528,7 +528,7 @@ void Foam::hexMeshSmootherMotionSolver::laplaceSmooth
         mesh(),
         n,
         plusEqOp<label>(),
-        0
+        label(0)
     );
     syncTools::syncPointList
     (
@@ -613,7 +613,7 @@ void Foam::hexMeshSmootherMotionSolver::featLaplaceSmooth
         meshPoints,
         n,
         plusEqOp<label>(),
-        0
+        label(0)
     );
     syncTools::syncPointList
     (
@@ -843,7 +843,7 @@ hexMeshSmootherMotionSolver
         mesh,
         pointTypes_,
         maxEqOp<label>(),
-        0
+        label(0)
     );
 
     bitSet isVal;
@@ -973,7 +973,7 @@ hexMeshSmootherMotionSolver
         mesh,
         pointTypes_,
         maxEqOp<label>(),
-        0
+        label(0)
     );
 
     bitSet isVal;
-- 
GitLab