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
b3fc0639
Commit
b3fc0639
authored
Apr 07, 2020
by
Uwe Schulzweida
Browse files
Fix cppcheck struct member is never used. [unusedStructMember]
parent
86fe2edb
Changes
3
Show whitespace changes
Inline
Side-by-side
src/Collgrid.cc
View file @
b3fc0639
...
...
@@ -33,7 +33,6 @@ struct EnsfileType
{
CdoStreamID
streamID
;
int
vlistID
;
int
gridID
;
size_t
nmiss
;
size_t
gridsize
;
std
::
vector
<
long
>
gridindex
;
...
...
src/Detrend.cc
View file @
b3fc0639
...
...
@@ -35,7 +35,7 @@
#define NALLOC_INC 1024
static
void
detrend
(
const
long
nts
,
Varray
<
double
>
&
deltaTS0
,
const
double
missval1
,
const
Varray
<
double
>
&
array1
,
Varray
<
double
>
&
array2
)
detrend
(
const
long
nts
,
const
Varray
<
double
>
&
deltaTS0
,
const
double
missval1
,
const
Varray
<
double
>
&
array1
,
Varray
<
double
>
&
array2
)
{
const
auto
missval2
=
missval1
;
double
sumj
=
0
,
sumjj
=
0
;
...
...
src/Samplegrid.cc
View file @
b3fc0639
...
...
@@ -77,8 +77,6 @@ Samplegrid(void *process)
struct
sbox_t
{
int
gridSrcID
,
gridIDsampled
;
int
*
cellidx
,
nvals
;
int
subI0
,
subI1
,
subJ0
,
subJ1
;
};
cdoInitialize
(
process
);
...
...
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