From a6f2aff4498af762ae661a7d576797e3c0acd313 Mon Sep 17 00:00:00 2001
From: Mark Olesen <Mark.Olesen@esi-group.com>
Date: Tue, 2 Nov 2021 12:09:00 +0100
Subject: [PATCH] BUG: spurious argument in sutherlandTransport addition (fixes
 #2256)

---
 .../specie/transport/sutherland/sutherlandTransport.H           | 2 +-
 .../specie/transport/sutherland/sutherlandTransportI.H          | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransport.H b/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransport.H
index 0d8322942ac..fd5d170a2c3 100644
--- a/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransport.H
+++ b/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransport.H
@@ -140,7 +140,7 @@ public:
         explicit sutherlandTransport(const dictionary& dict);
 
         //- Construct from base thermo and dictionary
-        sutherlandTransport(const Thermo& t,const dictionary& dict);
+        sutherlandTransport(const Thermo& t, const dictionary& dict);
 
         //- Construct and return a clone
         inline autoPtr<sutherlandTransport> clone() const;
diff --git a/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransportI.H b/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransportI.H
index 33f59fc804b..640dd249232 100644
--- a/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransportI.H
+++ b/src/thermophysicalModels/specie/transport/sutherland/sutherlandTransportI.H
@@ -196,7 +196,6 @@ inline Foam::sutherlandTransport<Thermo> Foam::operator+
         return sutherlandTransport<Thermo>
         (
             t,
-            0,
             st1.As_,
             st1.Ts_
         );
-- 
GitLab