box: add missing include

This commit is contained in:
Vaxry 2024-02-03 01:30:05 +00:00
parent cf1886ca44
commit 504ebe1b37
1 changed files with 4 additions and 0 deletions

View File

@ -1,4 +1,8 @@
#include "Box.hpp"
#include <limits>
#include <algorithm>
wlr_box CBox::wlr() {
CBox rounded = roundInternal();
m_bWlrBox = wlr_box{(int)rounded.x, (int)rounded.y, (int)rounded.w, (int)rounded.h};