COMP: resolved build error due to change in commit 02598d0e36 - need to revisit

This commit is contained in:
Andrew Heather
2019-04-17 11:32:25 +01:00
parent 52cb57b65c
commit fb5940131e
2 changed files with 3 additions and 3 deletions

View File

@ -39,8 +39,8 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const InfoProxy<IOobject>& ip)
<< io.type() << token::SPACE << io.type() << token::SPACE
<< io.name() << io.name()
<< " local: " << io.local() << " local: " << io.local()
<< " readOpt: " << io.readOpt() << " readOpt: " << static_cast<char>(io.readOpt())
<< " writeOpt: " << io.writeOpt() << " writeOpt: " << static_cast<char>(io.writeOpt())
<< " globalObject: " << io.globalObject() << " globalObject: " << io.globalObject()
<< token::SPACE << io.path() << endl; << token::SPACE << io.path() << endl;

View File

@ -470,7 +470,7 @@ bool Foam::objectRegistry::writeObject
<< name() << " : Considering writing object " << name() << " : Considering writing object "
<< iter.key() << iter.key()
<< " of type " << iter->type() << " of type " << iter->type()
<< " with writeOpt " << iter->writeOpt() << " with writeOpt " << static_cast<char>(iter->writeOpt())
<< " to file " << iter->objectPath() << " to file " << iter->objectPath()
<< endl; << endl;
} }