robofit / but_velodyne

ROS packages for Velodyne 3D LIDARs provided by Robo@FIT group.
GNU Lesser General Public License v3.0
142 stars 98 forks source link

isnan not defined #16

Open rebellojason7 opened 7 years ago

rebellojason7 commented 7 years ago

Got the following error when building but_calibration_camera_velodyne

but_velodyne/but_calibration_camera_velodyne/include/but_calibration_camera_velodyne/Calibration.h:53:24: error: ‘isnan’ was not declared in this scope return !isnan(value);

Can easily by solved with return !std::isnan(value);

themightyoarfish commented 6 years ago

Yup, same here, silly bug. Will submit PR.