Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
38f3e5fc
Commit
38f3e5fc
authored
Sep 28, 2017
by
Uwe Schulzweida
Browse files
Merge declaration and initialization.
parent
b03b6e51
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/after_fctrans.cc
View file @
38f3e5fc
...
...
@@ -1997,8 +1997,7 @@ void fc2gp(double *restrict trig, long *restrict ifax, double *restrict fc, doub
long
jump
=
(
nlon
+
2
);
long
lot
=
nlev
*
nlat
;
long
nx
=
nlon
+
1
;
if
(
nlon
%
2
==
1
)
nx
=
nlon
;
long
nx
=
(
nlon
%
2
==
1
)
?
nlon
:
nlon
+
1
;
long
nblox
=
1
+
(
lot
-
1
)
/
NFFT
;
long
nvex
=
lot
-
(
nblox
-
1
)
*
NFFT
;
long
nvex0
=
nvex
;
...
...
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