From f46c57951db03b385e0751f31e5a70261ea01b65 Mon Sep 17 00:00:00 2001 From: mattijs Date: Thu, 17 Jun 2021 14:46:25 +0100 Subject: [PATCH] STYLE: dynamicFvMesh: indentation, naming --- .../dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.H | 2 +- .../dynamicMotionSolverListFvMesh.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dynamicFvMesh/dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.H b/src/dynamicFvMesh/dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.H index ba8e1aca12..3c4a4d8c5c 100644 --- a/src/dynamicFvMesh/dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.H +++ b/src/dynamicFvMesh/dynamicMotionSolverFvMesh/dynamicMotionSolverFvMesh.H @@ -78,7 +78,7 @@ public: // Constructors //- Construct from IOobject - dynamicMotionSolverFvMesh(const IOobject& io, bool syncPar=true); + dynamicMotionSolverFvMesh(const IOobject& io, const bool doInit=true); //- Construct from components without boundary. // Boundary is added using addFvPatches() member function diff --git a/src/dynamicFvMesh/dynamicMotionSolverListFvMesh/dynamicMotionSolverListFvMesh.C b/src/dynamicFvMesh/dynamicMotionSolverListFvMesh/dynamicMotionSolverListFvMesh.C index 6072048d58..327e71fd90 100644 --- a/src/dynamicFvMesh/dynamicMotionSolverListFvMesh/dynamicMotionSolverListFvMesh.C +++ b/src/dynamicFvMesh/dynamicMotionSolverListFvMesh/dynamicMotionSolverListFvMesh.C @@ -114,7 +114,7 @@ bool Foam::dynamicMotionSolverListFvMesh::init(const bool doInit) motionSolvers_.set ( i++, - motionSolver::New(*this, IOsolverDict) + motionSolver::New(*this, IOsolverDict) ); } }