Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Scott Wittenburg
VTK
Commits
a443bea2
Commit
a443bea2
authored
Dec 27, 2013
by
Sankhesh Jhaveri
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler warning about shadow declaration of variable
Change-Id: I8a17792958f726e3a2b46ba88728dfd6339f236b
parent
55232e6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Filters/ParallelGeometry/vtkPUnstructuredGridConnectivity.cxx
...ers/ParallelGeometry/vtkPUnstructuredGridConnectivity.cxx
+1
-1
No files found.
Filters/ParallelGeometry/vtkPUnstructuredGridConnectivity.cxx
View file @
a443bea2
...
...
@@ -1072,7 +1072,7 @@ void vtkPUnstructuredGridConnectivity::SerializeGhostZones()
// extract the cell ids to send to this remote rank
vtkIdList
*
cellIds
=
vtkIdList
::
New
();
cellIds
->
SetNumberOfIds
(
celllinks
->
size
());
for
(
unsigned
int
lnk
=
0
;
lnk
<
celllinks
->
size
();
++
lnk
)
for
(
lnk
=
0
;
lnk
<
celllinks
->
size
();
++
lnk
)
{
cellIds
->
SetId
(
lnk
,(
*
celllinks
)[
lnk
].
SourceIdx
);
}
// END for all links
...
...
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