Formatting
This commit is contained in:
parent
41829c7a53
commit
48a70dfb29
2 changed files with 4 additions and 5 deletions
|
@ -35,7 +35,7 @@ inline const DimensionedField<Type, GeoMesh>&
|
|||
DimensionedField<Type, GeoMesh>::null()
|
||||
{
|
||||
// Dangerous, but no null constructor. Reconsider. HJ, 10/Apr/2013
|
||||
return *reinterpret_cast< DimensionedField<Type, GeoMesh>* >(0);
|
||||
return *reinterpret_cast<DimensionedField<Type, GeoMesh>* >(0);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -108,10 +108,9 @@ public:
|
|||
}
|
||||
|
||||
|
||||
// Destructor
|
||||
|
||||
virtual ~pointPatchField()
|
||||
{}
|
||||
//- Destructor
|
||||
virtual ~pointPatchField()
|
||||
{}
|
||||
|
||||
|
||||
// Member operators
|
||||
|
|
Reference in a new issue