Fix compilation with libc++

This file uses std::sort and does not import correct header.
Compilation with libstdc++ worked due to some indirect import, but compilation with LLVM libc++ fails.
This commit is contained in:
Sv. Lockal
2025-01-04 10:28:14 +00:00
parent ac08b752e3
commit 865121b21d

View File

@ -3,6 +3,7 @@
#include <json/value.h>
#include <spdlog/spdlog.h>
#include <algorithm>
#include <utility>
namespace waybar::util {