Skip to content

Commit

Permalink
AP_HAL_Empty: remove un-needed constructor
Browse files Browse the repository at this point in the history
Not sure the initialisation is needed but retained it.
  • Loading branch information
peterbarker committed Oct 13, 2020
1 parent 3cce619 commit 7e92bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_HAL_Empty/Semaphores.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7e92bbc

Please sign in to comment.