mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: resolved build error due to change in commit 02598d0e36 - need to revisit
This commit is contained in:
@ -39,8 +39,8 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const InfoProxy<IOobject>& ip)
|
||||
<< io.type() << token::SPACE
|
||||
<< io.name()
|
||||
<< " local: " << io.local()
|
||||
<< " readOpt: " << io.readOpt()
|
||||
<< " writeOpt: " << io.writeOpt()
|
||||
<< " readOpt: " << static_cast<char>(io.readOpt())
|
||||
<< " writeOpt: " << static_cast<char>(io.writeOpt())
|
||||
<< " globalObject: " << io.globalObject()
|
||||
<< token::SPACE << io.path() << endl;
|
||||
|
||||
|
||||
@ -470,7 +470,7 @@ bool Foam::objectRegistry::writeObject
|
||||
<< name() << " : Considering writing object "
|
||||
<< iter.key()
|
||||
<< " of type " << iter->type()
|
||||
<< " with writeOpt " << iter->writeOpt()
|
||||
<< " with writeOpt " << static_cast<char>(iter->writeOpt())
|
||||
<< " to file " << iter->objectPath()
|
||||
<< endl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user