summaryrefslogtreecommitdiff
path: root/external/pdfium/gcc-c++20-comparison.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/pdfium/gcc-c++20-comparison.patch')
-rw-r--r--external/pdfium/gcc-c++20-comparison.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/external/pdfium/gcc-c++20-comparison.patch b/external/pdfium/gcc-c++20-comparison.patch
deleted file mode 100644
index bc7f2ed9538b..000000000000
--- a/external/pdfium/gcc-c++20-comparison.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- core/fxcrt/retain_ptr.h
-+++ core/fxcrt/retain_ptr.h
-@@ -135,6 +135,7 @@
- mutable intptr_t m_nRefCount = 0;
- };
-
-+#if __cplusplus < 202002L || (defined __clang__ && __clang_major__ >= 16)
- template <typename T, typename U>
- inline bool operator==(const U* lhs, const RetainPtr<T>& rhs) {
- return rhs == lhs;
-@@ -144,6 +144,7 @@
- inline bool operator!=(const U* lhs, const RetainPtr<T>& rhs) {
- return rhs != lhs;
- }
-+#endif
-
- } // namespace fxcrt
-