AP_HAL_Empty: remove un-needed constructor

Not sure the initialisation is needed but retained it.
This commit is contained in:
Peter Barker 2020-10-12 17:06:42 +11:00 committed by Peter Barker
parent 3cce6197a1
commit 7e92bbc7bd
1 changed files with 1 additions and 1 deletions

View File

@ -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;