Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Frenetz committed May 29, 2024
1 parent 3931c1f commit a925065
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TimedDoor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ void DoorTimerAdapter::Timeout() {
}
}

TimedDoor::TimedDoor(int timeout_) : iTimeout(timeout_), isOpened(false), adapter(new DoorTimerAdapter(*this)) {}
TimedDoor::TimedDoor(int timeout_) : iTimeout(timeout_), isOpened(false),
adapter(new DoorTimerAdapter(*this)) {}

bool TimedDoor::isDoorOpened() {
return isOpened;
Expand Down

0 comments on commit a925065

Please sign in to comment.