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
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);
The text was updated successfully, but these errors were encountered:
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);
The text was updated successfully, but these errors were encountered: