From 504ebe1b373726947a44fa2d6a68498d0edb85b6 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sat, 3 Feb 2024 01:30:05 +0000 Subject: [PATCH] box: add missing include --- src/helpers/Box.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/helpers/Box.cpp b/src/helpers/Box.cpp index d3f5d36c..59578f23 100644 --- a/src/helpers/Box.cpp +++ b/src/helpers/Box.cpp @@ -1,4 +1,8 @@ #include "Box.hpp" + +#include +#include + wlr_box CBox::wlr() { CBox rounded = roundInternal(); m_bWlrBox = wlr_box{(int)rounded.x, (int)rounded.y, (int)rounded.w, (int)rounded.h};