mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: correct initialisation list in coupledPolyPatch constructor
This commit is contained in:
@ -508,7 +508,9 @@ Foam::coupledPolyPatch::coupledPolyPatch
|
||||
matchTolerance_(dict.lookupOrDefault("matchTolerance", defaultMatchTol_)),
|
||||
transform_
|
||||
(
|
||||
transformTypeNames.read(dict.lookupOrDefault("transform", "UNKNOWN"))
|
||||
dict.found("transform")
|
||||
? transformTypeNames.read(dict.lookup("transform"))
|
||||
: UNKNOWN
|
||||
)
|
||||
{}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user