Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
219bf3a6
Commit
219bf3a6
authored
Mar 14, 2016
by
Ralf Mueller
Browse files
fix compile error with gcc/g++ 5.3.0
parent
a1e91d8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/EOFs.c
View file @
219bf3a6
...
...
@@ -377,7 +377,7 @@ void *EOFs(void * argument)
npack
=
0
;
for
(
i
=
0
;
i
<
gridsize
;
++
i
)
{
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
.
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
!
DBL_IS_EQUAL
(
in
[
i
],
missval
)
)
pack
[
npack
++
]
=
i
;
}
...
...
@@ -392,7 +392,7 @@ void *EOFs(void * argument)
ipack
=
0
;
for
(
i
=
0
;
i
<
gridsize
;
++
i
)
{
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
.
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
!
DBL_IS_EQUAL
(
in
[
i
],
missval
)
&&
pack
[
ipack
++
]
!=
i
)
{
cdoAbort
(
"Missing values unsupported!"
);
...
...
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