summaryrefslogtreecommitdiff
path: root/dev-ros/image_cb_detector/files/c11.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-ros/image_cb_detector/files/c11.patch')
-rw-r--r--dev-ros/image_cb_detector/files/c11.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev-ros/image_cb_detector/files/c11.patch b/dev-ros/image_cb_detector/files/c11.patch
deleted file mode 100644
index bddbce93725f..000000000000
--- a/dev-ros/image_cb_detector/files/c11.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: image_cb_detector/src/rgbd_cb_detector_action.cpp
-===================================================================
---- image_cb_detector.orig/src/rgbd_cb_detector_action.cpp
-+++ image_cb_detector/src/rgbd_cb_detector_action.cpp
-@@ -143,7 +143,7 @@ public:
- for(size_t i = 0; i< features.image_points.size(); i++){
- geometry_msgs::Point pixel = features.image_points[i];
- float depth = *(depth_ptr+width*(unsigned int)pixel.y+(unsigned int)pixel.x);
-- if ( isnan(depth) )
-+ if ( std::isnan(depth) )
- {
- continue;
- }