STYLE: remove virtual from override-qualified methods (surfaceFeatureExtract)

This commit is contained in:
Mark Olesen
2023-10-23 09:44:54 +02:00
parent 32a8a30b8c
commit e4745d09ec
8 changed files with 21 additions and 61 deletions

View File

@ -56,10 +56,14 @@ Foam::surfaceFeaturesExtraction::method::method()
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::surfaceFeaturesExtraction::method::~method()
{}
Foam::surfaceFeaturesExtraction::method::method(const dictionary& dict)
:
includedAngle_(0),
geometricTestOnly_(Switch::NO)
{
dict.readIfPresent("includedAngle", includedAngle_);
dict.readIfPresent("geometricTestOnly", geometricTestOnly_);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //