Skip to content
Snippets Groups Projects
Commit cc1a3e58 authored by laurence's avatar laurence
Browse files

BUG: correct initialisation list in coupledPolyPatch constructor

parent 9c76fd79
Branches
Tags
No related merge requests found
......@@ -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
)
{}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment