You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
../keypoints/src/narf_keypoint.cpp: In member function ‘voidpcl::NarfKeypoint::clearData()’:
../keypoints/src/narf_keypoint.cpp:75:52: warning: deleting object of polymorphic class type ‘pcl::RangeImage’ which has non-virtual destructor might cause undefined behavior [-Wdelete-non-virtual-dtor]
delete range_image_scale_space_[scale_space_idx];
We removed the dtor from PointCloud which was virtual. RangeImage inherited it from PointCloud. Since it was removed, RangeImage now needs its virtual dtor explicitly defined.
This PR introduces the following warning:
Originally posted by @taketwo in #3454 (comment)
The text was updated successfully, but these errors were encountered: