BUG: profiling dictionary could be binary/compressed (fixed #157)

BUG: memInfo not activated by -profiling option (fixed #157)
This commit is contained in:
Mark Olesen
2016-06-22 17:20:15 +02:00
parent 2ca4082852
commit 85e246b8f2
3 changed files with 45 additions and 9 deletions

View File

@ -438,6 +438,22 @@ bool Foam::profiling::writeData(Ostream& os) const
}
bool Foam::profiling::writeObject
(
IOstream::streamFormat,
IOstream::versionNumber ver,
IOstream::compressionType
) const
{
return regIOobject::writeObject
(
IOstream::ASCII,
ver,
IOstream::UNCOMPRESSED
);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
Foam::profiling::Information* Foam::profiling::store(Information *info)