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.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;
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user