STYLE: use default destructor in header definitions

This commit is contained in:
OpenFOAM bot
2019-09-24 12:14:36 +02:00
committed by Andrew Heather
parent 310c5d934e
commit 38b53e5346
260 changed files with 500 additions and 758 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2017-2019 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -159,8 +159,7 @@ public:
//- Destructor
virtual ~ReynoldsAnalogy()
{}
virtual ~ReynoldsAnalogy() = default;
// Member Functions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2017-2019 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -122,8 +122,7 @@ public:
//- Destructor
virtual ~fixedReferenceTemperature()
{}
virtual ~fixedReferenceTemperature() = default;
// Member Functions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2017-2019 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -134,8 +134,7 @@ public:
//- Destructor
virtual ~heatTransferCoeffModel()
{}
virtual ~heatTransferCoeffModel() = default;
// Member Functions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2017-2019 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -114,8 +114,7 @@ public:
//- Destructor
virtual ~localReferenceTemperature()
{}
virtual ~localReferenceTemperature() = default;
// Member Functions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2017 OpenCFD Ltd.
\\ / A nd | Copyright (C) 2017-2019 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
| Copyright (C) 2011-2016 OpenFOAM Foundation
@ -124,8 +124,7 @@ public:
allVectors_(allVectors)
{}
virtual ~trackingData()
{}
virtual ~trackingData() = default;
};