mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: access transformedElements by reference, not copy
- better code style and seems to avoid triggering a gcc warning about possibly uninitialized values COMP: JSONformatter writeEntry missing a return value STYLE: accept 'json' for checkMesh write format - consistent with caseInfo functionObject
This commit is contained in:
@ -130,7 +130,7 @@ Foam::Ostream& Foam::JSONformatter::writeDict(const dictionary& dict)
|
||||
const word& keyword = e.keyword();
|
||||
|
||||
os_ << indent;
|
||||
writeKeyword(keyword) << " : ";
|
||||
os_.writeQuoted(keyword) << " : ";
|
||||
|
||||
if (e.isDict())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user