mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Remove unused include files.
This commit is contained in:
@ -26,7 +26,6 @@ License
|
||||
#include "cellSource.H"
|
||||
#include "fvMesh.H"
|
||||
#include "volFields.H"
|
||||
#include "IOList.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -25,7 +25,6 @@ License
|
||||
|
||||
#include "cellSource.H"
|
||||
#include "volFields.H"
|
||||
#include "IOList.H"
|
||||
|
||||
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
||||
|
||||
@ -133,7 +132,7 @@ bool Foam::fieldValues::cellSource::writeValues(const word& fieldName)
|
||||
|
||||
if (valueOutput_)
|
||||
{
|
||||
IOList<Type>
|
||||
IOField<Type>
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
|
||||
@ -30,7 +30,6 @@ License
|
||||
#include "processorPolyPatch.H"
|
||||
#include "surfaceFields.H"
|
||||
#include "volFields.H"
|
||||
#include "IOList.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
|
||||
@ -26,7 +26,6 @@ License
|
||||
#include "faceSource.H"
|
||||
#include "surfaceFields.H"
|
||||
#include "volFields.H"
|
||||
#include "IOList.H"
|
||||
#include "ListListOps.H"
|
||||
|
||||
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
||||
@ -145,7 +144,7 @@ bool Foam::fieldValues::faceSource::writeValues(const word& fieldName)
|
||||
|
||||
if (valueOutput_)
|
||||
{
|
||||
IOList<Type>
|
||||
IOField<Type>
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
|
||||
@ -33,10 +33,10 @@ namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(fieldValue, 0);
|
||||
|
||||
defineTemplateTypeNameAndDebug(IOList<vector>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOList<sphericalTensor>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOList<symmTensor>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOList<tensor>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOField<vector>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOField<sphericalTensor>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOField<symmTensor>, 0);
|
||||
defineTemplateTypeNameAndDebug(IOField<tensor>, 0);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user