Skip to content
Snippets Groups Projects
Commit f3eaf29e authored by Andrew Heather's avatar Andrew Heather
Browse files

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

parent 9d6a4931
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment