Skip to content

Commit 5bf5a9f

Browse files
committed
re-order module declaration
ccPointCloud has some method with paramters that have default values, and pybind11 needs to know these types to be able to convert c++ -> python Thus the module need should be defined before
1 parent 2e42a67 commit 5bf5a9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wrapper/pycc/src/qcc_db/qcc_db.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ void define_qcc_db(py::module &m)
172172
define_ccWaveform(m);
173173
define_ccRasterGrid(m);
174174
define_ccGenericPointCloud(m);
175+
define_ccNormalVectors(m);
175176
define_ccPointCloud(m);
176177
define_ccPolyline(m);
177-
define_ccNormalVectors(m);
178178

179179
define_ccLog(m);
180180
define_ccProgressDialog(m);

0 commit comments

Comments
 (0)