mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_HAL_Empty: remove un-needed constructor
Not sure the initialisation is needed but retained it.
This commit is contained in:
parent
3cce6197a1
commit
7e92bbc7bd
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
class Empty::Semaphore : public AP_HAL::Semaphore {
|
class Empty::Semaphore : public AP_HAL::Semaphore {
|
||||||
public:
|
public:
|
||||||
Semaphore() : _taken(false) {}
|
|
||||||
bool give() override;
|
bool give() override;
|
||||||
bool take(uint32_t timeout_ms) override;
|
bool take(uint32_t timeout_ms) override;
|
||||||
bool take_nonblocking() override;
|
bool take_nonblocking() override;
|
||||||
|
Loading…
Reference in New Issue
Block a user