Add <algorithm> header to fix compilation issue on Arch Linux

The code was failing to compile on Arch Linux due to missing definitions from the <algorithm> header. Including this header resolves the issue, ensuring compatibility across different environments.
This commit is contained in:
bonsthie
2024-08-08 17:49:14 +02:00
parent 25d86eccee
commit 8370ae8324
3 changed files with 5 additions and 2 deletions

View File

@@ -10,6 +10,7 @@
/* */
/* ************************************************************************** */
#include <algorithm>
#include <core/application.h>
#define CHECK_WINDOW_PTR(win) \