Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
d6857274
Commit
d6857274
authored
Jan 30, 2019
by
Mark Olesen
Browse files
GIT: fix previous dirty commit
parent
70845a88
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/fileFormats/ensight/file/ensightFile.C
View file @
d6857274
...
...
@@ -353,7 +353,7 @@ void Foam::ensightFile::writeList
{
for
(
const
label
id
:
addr
)
{
if
(
id
x
>=
field
.
size
()
||
std
::
isnan
(
field
[
id
]))
if
(
id
<
0
||
id
>=
field
.
size
()
||
std
::
isnan
(
field
[
id
]))
{
writeUndef
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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