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
Christian Butz
VTK
Commits
7736b777
Commit
7736b777
authored
Oct 03, 2011
by
Jon Woodring
Browse files
Fix for shadowed variable warning.
Change-Id: Ia64f26a049e1d41ccdeb8c65b29bac245bb734e1
parent
2db9d498
Changes
1
Hide whitespace changes
Inline
Side-by-side
Parallel/vtkWindBladeReader.cxx
View file @
7736b777
...
...
@@ -1800,9 +1800,9 @@ void vtkWindBladeReader::SetupBladeData()
{
size_t
len
=
strlen
(
inBuf
);
// number of lines corresponds to number of spaces
for
(
size_t
i
=
0
;
i
<
len
;
i
++
)
for
(
size_t
j
=
0
;
j
<
len
;
j
++
)
{
if
(
inBuf
[
i
]
==
' '
)
if
(
inBuf
[
j
]
==
' '
)
{
numColumns
++
;
}
...
...
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