Add missing \#include <span>

Without it, build fails with the following error: error: no template
named 'span' in namespace 'std'
This commit is contained in:
Hiroki Tagato 2026-01-05 17:46:12 +09:00
parent 4af02a3925
commit aaa2f3ce33
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <span>
#include <hyprutils/math/Vector2D.hpp>
#include "./AsyncResource.hpp"
#include "../../color/Color.hpp"

View file

@ -3,6 +3,7 @@
#include <cairo/cairo.h>
#include <string>
#include <expected>
#include <span>
#include <png.h>
#include <hyprutils/math/Vector2D.hpp>