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
libcdi
Commits
ac2ae74c
Commit
ac2ae74c
authored
Jul 19, 2016
by
Uwe Schulzweida
Browse files
Removed unused grid_t member extraData.
parent
f3e802d1
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/cdf_lazy_grid.c
View file @
ac2ae74c
...
...
@@ -26,7 +26,6 @@ static bool cdfLazyInitialized;
void
cdfLazyGridDestroy
(
struct
cdfLazyGrid
*
lazyGrid
)
{
lazyGrid
->
base
.
extraData
=
NULL
;
if
(
lazyGrid
->
base
.
area
==
cdfPendingLoad
)
lazyGrid
->
base
.
area
=
NULL
;
if
(
lazyGrid
->
base
.
x
.
vals
==
cdfPendingLoad
)
lazyGrid
->
base
.
x
.
vals
=
NULL
;
if
(
lazyGrid
->
base
.
y
.
vals
==
cdfPendingLoad
)
lazyGrid
->
base
.
y
.
vals
=
NULL
;
...
...
src/grid.c
View file @
ac2ae74c
...
...
@@ -170,7 +170,6 @@ void grid_init(grid_t *gridptr)
memset
(
gridptr
->
uuid
,
0
,
CDI_UUID_SIZE
);
gridptr
->
name
=
NULL
;
gridptr
->
vtable
=
&
cdiGridVtable
;
gridptr
->
extraData
=
NULL
;
gridptr
->
atts
.
nalloc
=
0
;
gridptr
->
atts
.
nelems
=
0
;
}
...
...
src/grid.h
View file @
ac2ae74c
...
...
@@ -130,7 +130,6 @@ struct grid_t {
struct
gridaxis_t
x
;
struct
gridaxis_t
y
;
const
struct
gridVirtTable
*
vtable
;
void
*
extraData
;
cdi_atts_t
atts
;
};
...
...
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