We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 588c38f commit 648abf7Copy full SHA for 648abf7
VERSION.txt
@@ -1 +1 @@
1
-2.2.0
+2.2.1
pdal/PyArray.hpp
@@ -74,7 +74,7 @@ class PDAL_DLL Array
74
Array& operator=(Array const& rhs);
75
Fields m_fields;
76
bool m_rowMajor;
77
- Shape m_shape;
+ Shape m_shape {};
78
std::vector<std::unique_ptr<ArrayIter>> m_iterators;
79
};
80
pdal/libpdalpython.pyx
@@ -106,7 +106,6 @@ cdef class PyPipeline:
106
cdef Array* a
107
108
if arrays is not None:
109
- print("Looping arrays\n")
110
for array in arrays:
111
a = new Array(array)
112
c_arrays.push_back(a)
0 commit comments