Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
John Tourtellott
VTK
Commits
bf1cd7e2
Commit
bf1cd7e2
authored
Jul 17, 2015
by
John Tourtellott
Browse files
Change iterator from postincrement to preincrement
parent
5c97e44a
Changes
1
Hide whitespace changes
Inline
Side-by-side
IO/GDAL/vtkGDALRasterReader.cxx
View file @
bf1cd7e2
...
...
@@ -755,7 +755,7 @@ int vtkGDALRasterReader::RequestData(vtkInformation* vtkNotUsed(request),
noDataArray
->
SetName
(
"NO_DATA_VALUE"
);
noDataArray
->
SetNumberOfComponents
(
1
);
noDataArray
->
SetNumberOfTuples
(
this
->
Implementation
->
NumberOfBands
);
for
(
int
i
=
0
;
i
<
this
->
Implementation
->
NumberOfBands
;
i
++
)
for
(
int
i
=
0
;
i
<
this
->
Implementation
->
NumberOfBands
;
++
i
)
{
int
success
=
0
;
double
noDataValue
=
this
->
Implementation
->
GDALData
->
GetRasterBand
(
...
...
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