mirror of
https://github.com/hyprwm/aquamarine.git
synced 2025-02-05 09:29:49 +01:00
core: Unbreak build with libc++ (#131)
* backend: remove unused headers after511600133c
* backend: add missing header for libc++ after03677f8561
src/backend/Backend.cpp:275:42: error: no member named 'find_if' in namespace 'std::ranges' 275 | const auto primary = std::ranges::find_if(implementations, [](SP<IBackendImplementation> value) { return value->type() == Aquamarine::AQ_BACKEND_DRM; }); | ~~~~~~~~~~~~~^
This commit is contained in:
parent
fe8ff219fd
commit
69048021ac
1 changed files with 1 additions and 3 deletions
|
@ -3,9 +3,7 @@
|
|||
#include <aquamarine/backend/Headless.hpp>
|
||||
#include <aquamarine/backend/DRM.hpp>
|
||||
#include <aquamarine/allocator/GBM.hpp>
|
||||
#include <sys/poll.h>
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
#include <ranges>
|
||||
#include <sys/timerfd.h>
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
|
|
Loading…
Reference in a new issue