Skip to content
Snippets Groups Projects
Commit 3b10cd84 authored by Andrew Heather's avatar Andrew Heather Committed by mattijs
Browse files

ENH: Provided backwards compat for deprecated partialFaceAreaWeightAMI

parent 3cf0c58d
Branches
Tags
1 merge request!474Hot fixes for v2106
......@@ -38,6 +38,17 @@ namespace Foam
defineTypeNameAndDebug(faceAreaWeightAMI, 0);
addToRunTimeSelectionTable(AMIInterpolation, faceAreaWeightAMI, dict);
addToRunTimeSelectionTable(AMIInterpolation, faceAreaWeightAMI, component);
// Backwards compatibility for pre v2106 versions
// - partialFaceAreaWeightAMI deprecated in v2106
addNamedToRunTimeSelectionTable
(
AMIInterpolation,
faceAreaWeightAMI,
dict,
partialFaceAreaWeightAMI
);
}
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
......
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