core: Unbreak build with libc++ (#131)

* backend: remove unused headers after 511600133c

* backend: add missing header for libc++ after 03677f8561

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:
Jan Beich 2025-01-11 04:12:51 +00:00 committed by GitHub
parent fe8ff219fd
commit 69048021ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>