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

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

parent 52cb57b6
Branches
Tags
No related merge requests found
...@@ -39,8 +39,8 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const InfoProxy<IOobject>& ip) ...@@ -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 ...@@ -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;
} }
......
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