Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
391afe78
Commit
391afe78
authored
Apr 24, 2019
by
Mark OLESEN
Committed by
Andrew Heather
Apr 24, 2019
Browse files
STYLE: report read/write options as integers (see
fb594013
)
parent
4d215d8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/db/IOobject/IOobjectIO.C
View file @
391afe78
...
...
@@ -39,8 +39,8 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const InfoProxy<IOobject>& ip)
<<
io
.
type
()
<<
token
::
SPACE
<<
io
.
name
()
<<
" local: "
<<
io
.
local
()
<<
" readOpt: "
<<
static_cast
<
char
>
(
io
.
readOpt
())
<<
" writeOpt: "
<<
static_cast
<
char
>
(
io
.
writeOpt
())
<<
" readOpt: "
<<
static_cast
<
int
>
(
io
.
readOpt
())
<<
" writeOpt: "
<<
static_cast
<
int
>
(
io
.
writeOpt
())
<<
" globalObject: "
<<
io
.
globalObject
()
<<
token
::
SPACE
<<
io
.
path
()
<<
endl
;
...
...
src/OpenFOAM/db/objectRegistry/objectRegistry.C
View file @
391afe78
...
...
@@ -487,7 +487,7 @@ bool Foam::objectRegistry::writeObject
<<
name
()
<<
" : Considering writing object "
<<
iter
.
key
()
<<
" of type "
<<
iter
->
type
()
<<
" with writeOpt "
<<
static_cast
<
char
>
(
iter
->
writeOpt
())
<<
" with writeOpt "
<<
static_cast
<
int
>
(
iter
->
writeOpt
())
<<
" to file "
<<
iter
->
objectPath
()
<<
endl
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment