mirror of https://github.com/ArduPilot/ardupilot
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 {
|
||||
public:
|
||||
Semaphore() : _taken(false) {}
|
||||
|
||||
bool give() override;
|
||||
bool take(uint32_t timeout_ms) override;
|
||||
bool take_nonblocking() override;
|
||||
|
|
Loading…
Reference in New Issue