Update LLVM + Oboe

Initially this commit was only intended to update LLVM but due to a compilation error  on latest LLVM libcxx due to the C++ stdlib header `<algorithm>` being a transitive dependency that is no longer transitively included on the latest LLVM libcxx (as of https://reviews.llvm.org/D119667), this required changes in Skyline and Oboe which were done in https://github.com/google/oboe/pull/1521 and the submodule has been updated to include those changes.
This commit is contained in:
PixelyIon 2022-04-01 18:44:45 +05:30
parent c549788377
commit 7ce2a903a1
5 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit 08e3a5ccd952edee36b3c002e3a29c6b1b5153de
Subproject commit abffdd88767791ef6da4d2df7ec7ab158eb8b775

@ -1 +1 @@
Subproject commit 855ea841a93bf304065e5152909983b1b85ffabb
Subproject commit 9053f015ce1317d3c8bac0111c516b377c2e287e

View File

@ -3,6 +3,7 @@
#pragma once
#include <deque>
#include <kernel/types/KEvent.h>
#include <common/circular_buffer.h>
#include "common.h"

View File

@ -3,6 +3,7 @@
#pragma once
#include <algorithm>
#include <random>
#include <span>
#include <frozen/unordered_map.h>

View File

@ -3,6 +3,7 @@
#pragma once
#include <deque>
#include <kernel/types/KEvent.h>
#include <services/serviceman.h>
#include <common/macros.h>