Skip to content

Commit

Permalink
fixing #2
Browse files Browse the repository at this point in the history
  • Loading branch information
torydebra committed Jun 13, 2023
1 parent 1b98fb6 commit 5184dbb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions include/point_cloud2_filters/PassThroughFilterPointCloud2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
#define PASS_THROUGH_FILTER_HPP

#include <ros/ros.h>
//#include <filters/filters_base.hpp>
#include "/opt/ros/noetic/include/filters/filter_base.hpp"

#if ROS_VERSION_MINIMUM(1, 15, 0)
#include <filters/filter_base.hpp>
#else
#include <filters/filter_base.h>
#endif
#include <tf2_ros/transform_listener.h>
#include <pcl_ros/transforms.h>

Expand Down

0 comments on commit 5184dbb

Please sign in to comment.