Skip to content

Commit

Permalink
Hush compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
clangen committed Mar 18, 2019
1 parent a696d99 commit d67486f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/musikcube/cursespp/cursespp/OverlayBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ namespace cursespp {
this->stack = nullptr;
}

virtual void SetOverlayStack(OverlayStack* stack) {
virtual void SetOverlayStack(OverlayStack* stack) override {
this->stack = stack;
}

virtual bool IsTop() {
virtual bool IsTop() override {
if (LayoutBase::IsTop()) {
return true;
}
Expand Down

0 comments on commit d67486f

Please sign in to comment.