Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Ben Boeckel
Xdmf
Commits
215345fe
Commit
215345fe
authored
Sep 03, 2008
by
Dave Demarle
Browse files
COMP: Fix shadowed variable warnings
parent
8c423cb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
libsrc/XdmfArray.cxx
View file @
215345fe
...
...
@@ -330,15 +330,15 @@ XdmfInt32 XdmfArray::ReformFromSelection( XdmfDataDesc *DataDesc) {
return
(
this
->
Reform
(
DataDesc
));
}
if
(
DataDesc
->
GetSelectionType
()
==
XDMF_HYPERSLAB
){
XdmfInt32
R
ank
;
XdmfInt64
S
tart
[
XDMF_MAX_DIMENSION
];
XdmfInt64
S
tride
[
XDMF_MAX_DIMENSION
];
XdmfInt64
C
ount
[
XDMF_MAX_DIMENSION
];
XdmfInt32
r
ank
;
XdmfInt64
s
tart
[
XDMF_MAX_DIMENSION
];
XdmfInt64
s
tride
[
XDMF_MAX_DIMENSION
];
XdmfInt64
c
ount
[
XDMF_MAX_DIMENSION
];
// Select the HyperSlab from HDF5
XdmfDebug
(
"Reform from Hyperslab"
);
R
ank
=
DataDesc
->
GetHyperSlab
(
S
tart
,
S
tride
,
C
ount
);
this
->
Reform
(
R
ank
,
C
ount
);
r
ank
=
DataDesc
->
GetHyperSlab
(
s
tart
,
s
tride
,
c
ount
);
this
->
Reform
(
r
ank
,
c
ount
);
this
->
SelectAll
();
}
else
{
XdmfInt64
NumberOfCoordinates
;
...
...
Write
Preview
Supports
Markdown
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