Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

14 changes: 14 additions & 0 deletions tur-chromium/chromium-stable/1504-v8-memfd_create.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
--- a/v8/src/wasm/wasm-objects.cc
+++ b/v8/src/wasm/wasm-objects.cc
@@ -11,6 +11,11 @@
#undef MAP_TYPE
#endif // V8_TARGET_OS_LINUX

+#if defined __ANDROID__ && __ANDROID_API__ < 30
+#include <sys/syscall.h>
+#define memfd_create(name,flags) syscall(SYS_memfd_create,name,flags)
+#endif
+
#include "src/wasm/wasm-objects.h"

#include <optional>
14 changes: 0 additions & 14 deletions tur-chromium/chromium-stable/7002-blink-cxx11-narrowing.patch

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
--- a/base/containers/span.h
+++ b/base/containers/span.h
@@ -785,7 +785,7 @@
template <typename OtherElementType,
size_t OtherExtent,
typename OtherInternalPtrType>
- requires((OtherExtent == dynamic_extent || extent == OtherExtent) &&
+ requires((OtherExtent == dynamic_extent || Extent == OtherExtent) &&
std::equality_comparable_with<const element_type,
const OtherElementType>)
friend constexpr bool operator==(
@@ -820,7 +820,7 @@
template <typename OtherElementType,
size_t OtherExtent,
typename OtherInternalPtrType>
- requires((OtherExtent == dynamic_extent || extent == OtherExtent) &&
+ requires((OtherExtent == dynamic_extent || Extent == OtherExtent) &&
std::three_way_comparable_with<const element_type,
const OtherElementType>)
friend constexpr auto operator<=>(
Loading
Loading