File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ namespace pdal
3131
3232 extern " C"
3333 {
34- bool PDALHasNextPointView (PDALPointViewIteratorPtr collection )
34+ bool PDALHasNextPointView (PDALPointViewIteratorPtr itr )
3535 {
36- auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(collection );
36+ auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(itr );
3737 return ptr && ptr->hasNext ();
3838 }
3939
40- PDALPointViewPtr PDALGetNextPointView (PDALPointViewIteratorPtr collection )
40+ PDALPointViewPtr PDALGetNextPointView (PDALPointViewIteratorPtr itr )
4141 {
42- auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(collection );
42+ auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(itr );
4343 PDALPointViewPtr view = nullptr ;
4444
4545 if (ptr)
@@ -55,25 +55,25 @@ namespace pdal
5555 return view;
5656 }
5757
58- void PDALResetPointViewIterator (PDALPointViewIteratorPtr collection )
58+ void PDALResetPointViewIterator (PDALPointViewIteratorPtr itr )
5959 {
60- auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(collection );
60+ auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(itr );
6161
6262 if (ptr)
6363 {
6464 ptr->reset ();
6565 }
6666 }
6767
68- void PDALDisposePointViewIterator (PDALPointViewIteratorPtr collection )
68+ void PDALDisposePointViewIterator (PDALPointViewIteratorPtr itr )
6969 {
70- auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(collection );
70+ auto ptr = reinterpret_cast <pdal::capi::PointViewIterator *>(itr );
7171
7272 if (ptr)
7373 {
7474 delete ptr;
7575 ptr = nullptr ;
76- collection = nullptr ;
76+ itr = nullptr ;
7777 }
7878 }
7979
You can’t perform that action at this time.
0 commit comments