Add missing include for new PCL versions (#293)

After this change 6df3e602a7 (diff-24324a084e511502d7f34054ec31b353L50), an explicit include for KdTree is needed.
It was formerly a transitive include via pcl/surface/mls.h - pcl/search/pcl_search.h - pcl/search/kdtree.h - pcl/kdtree/kdtree_flann.h.
This commit is contained in:
Markus Vieth 2020-07-30 20:52:57 +02:00 committed by GitHub
parent 4ed0d3ecef
commit 21cf907c46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,6 +42,7 @@
// PCL includes
#include <pcl/surface/mls.h>
#include <pcl/kdtree/kdtree.h> // for KdTree
// Dynamic reconfigure
#include <dynamic_reconfigure/server.h>