From c5674f4994ca738bb714462794eafe7e8c9e4396 Mon Sep 17 00:00:00 2001 From: LinuxUserGD Date: Wed, 3 Sep 2025 00:19:34 +0200 Subject: [PATCH] formats: include vector header Fixes error `no member named 'vector' in namespace 'std'` on llvm/musl --- src/image/formats/Avif.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/image/formats/Avif.cpp b/src/image/formats/Avif.cpp index 2a29efb..188c951 100644 --- a/src/image/formats/Avif.cpp +++ b/src/image/formats/Avif.cpp @@ -6,6 +6,7 @@ #include #include #include +#include using namespace Hyprutils::Utils; static std::expected loadFromContext(heif_context* ctx) {