Revert "ENH: added xfer function to Field (stopped falling through to List)"

This reverts commit 49331bf917.
This commit is contained in:
andy
2010-11-24 10:55:44 +00:00
parent 82114f674d
commit 041f8199ac
2 changed files with 0 additions and 10 deletions

View File

@ -578,13 +578,6 @@ tmp<Field<Type> > Field<Type>::T() const
} }
template<class Type>
Xfer<Field<Type> > Field<Type>::xfer()
{
return xferMove(*this);
}
template<class Type> template<class Type>
void Field<Type>::writeEntry(const word& keyword, Ostream& os) const void Field<Type>::writeEntry(const word& keyword, Ostream& os) const
{ {

View File

@ -302,9 +302,6 @@ public:
//- Return the field transpose (only defined for second rank tensors) //- Return the field transpose (only defined for second rank tensors)
tmp<Field<Type> > T() const; tmp<Field<Type> > T() const;
//- Transfer contents to the Xfer container
Xfer<Field<Type> > xfer();
//- Write the field as a dictionary entry //- Write the field as a dictionary entry
void writeEntry(const word& keyword, Ostream& os) const; void writeEntry(const word& keyword, Ostream& os) const;