Skip to content

Commit

Permalink
Fix compilation of GazeboYarpLaserSensorDriver with YARP 3.6 (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Dec 22, 2021
1 parent b5a788c commit cede95a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ The format of this document is based on [Keep a Changelog](https://keepachangelo
- The `gazebo_imu` plugin now handle the `yarpDeviceName` parameter (https://github.com/robotology/gazebo-yarp-plugins/pull/583).
- The `gazebo_imu` plugin can be now opened without implicit wrapper, by using the `GAZEBO_YARP_PLUGINS_DISABLE_IMPLICIT_NETWORK_WRAPPERS` CMake option (https://github.com/robotology/gazebo-yarp-plugins/pull/583).

### Fixed
- Fixed compilation with YARP 3.6 (https://github.com/robotology/gazebo-yarp-plugins/pull/599).

## [4.0.0] - 2021-09-03

### Added
Expand Down
4 changes: 3 additions & 1 deletion plugins/lasersensor/include/yarp/dev/LaserSensorDriver.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ class yarp::dev::GazeboYarpLaserSensorDriver:
virtual bool setScanRate (double rate) override;

//PRECISELY TIMED
virtual yarp::os::Stamp getLastInputStamp() override;
// TODO(traversaro): Remove once we require YARP 3.6
// See https://github.com/robotology/gazebo-yarp-plugins/issues/598
virtual yarp::os::Stamp getLastInputStamp();

public:
//Lidar2DDeviceBase
Expand Down

0 comments on commit cede95a

Please sign in to comment.