diff options
author | CoprDistGit <infra@openeuler.org> | 2024-03-20 03:46:37 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-03-20 03:46:37 +0000 |
commit | fa06f8afb826bc7e16e2919c3b6feee02417ce28 (patch) | |
tree | 042a9bca624cc1e2a2c3dd7ef4943f0ac042556f /chromium-119-nullptr_t-without-namespace-std.patch | |
parent | 5e81daef691f9d194780705f7af7e5f84133315e (diff) |
automatic import of chromiumopeneuler23.09
Diffstat (limited to 'chromium-119-nullptr_t-without-namespace-std.patch')
-rw-r--r-- | chromium-119-nullptr_t-without-namespace-std.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chromium-119-nullptr_t-without-namespace-std.patch b/chromium-119-nullptr_t-without-namespace-std.patch new file mode 100644 index 0000000..5cb969f --- /dev/null +++ b/chromium-119-nullptr_t-without-namespace-std.patch @@ -0,0 +1,21 @@ +diff -up chromium-119.0.6045.59/third_party/blink/renderer/core/paint/fragment_data_iterator.h.me chromium-119.0.6045.59/third_party/blink/renderer/core/paint/fragment_data_iterator.h +--- chromium-119.0.6045.59/third_party/blink/renderer/core/paint/fragment_data_iterator.h.me 2023-10-27 20:07:16.421230815 +0200 ++++ chromium-119.0.6045.59/third_party/blink/renderer/core/paint/fragment_data_iterator.h 2023-10-27 20:07:36.883600085 +0200 +@@ -52,7 +52,7 @@ class FragmentDataIterator + public: + explicit FragmentDataIterator(const LayoutObject& object) + : FragmentDataIteratorBase(&object.FirstFragment()) {} +- explicit FragmentDataIterator(nullptr_t) ++ explicit FragmentDataIterator(std::nullptr_t) + : FragmentDataIteratorBase(nullptr) {} + }; + +@@ -63,7 +63,7 @@ class MutableFragmentDataIterator + explicit MutableFragmentDataIterator(const LayoutObject& object) + : FragmentDataIteratorBase( + &object.GetMutableForPainting().FirstFragment()) {} +- explicit MutableFragmentDataIterator(nullptr_t) ++ explicit MutableFragmentDataIterator(std::nullptr_t) + : FragmentDataIteratorBase(nullptr) {} + }; + |