Hush compiler warnings.

This commit is contained in:
casey langen 2019-03-17 22:15:02 -07:00
parent a696d99f5e
commit d67486fda9

View File

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