Fix a compiler warning (#1124)

Co-authored-by: hnboy <hnboy@users.noreply.github.com>
This commit is contained in:
Eric_Luo 2022-11-29 03:04:24 +08:00 committed by GitHub
parent 45d2d1e97d
commit afe12dc90b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 2 deletions

View file

@ -416,3 +416,6 @@ CWindow* IHyprLayout::getNextWindowCandidate(CWindow* pWindow) {
return PWINDOWCANDIDATE;
}
IHyprLayout::~IHyprLayout() {
}

View file

@ -16,6 +16,7 @@ enum eFullscreenMode : uint8_t;
interface IHyprLayout {
public:
virtual ~IHyprLayout() = 0;
virtual void onEnable() = 0;
virtual void onDisable() = 0;