Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.0
2.2.1
2 changes: 1 addition & 1 deletion pdal/PyArray.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class PDAL_DLL Array
Array& operator=(Array const& rhs);
Fields m_fields;
bool m_rowMajor;
Shape m_shape;
Shape m_shape {};
std::vector<std::unique_ptr<ArrayIter>> m_iterators;
};

Expand Down
1 change: 0 additions & 1 deletion pdal/libpdalpython.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ cdef class PyPipeline:
cdef Array* a

if arrays is not None:
print("Looping arrays\n")
for array in arrays:
a = new Array(array)
c_arrays.push_back(a)
Expand Down