summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-noexcept-3.patch
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2022-07-14 19:16:24 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2022-07-14 19:16:24 -0400
commit43609ca84694acca988dc0ae591c69ac447659b2 (patch)
treec82fdae375ed2a5948700dfb8a309de9e3238d7b /www-client/chromium/files/chromium-noexcept-3.patch
parentb3c6fc25a909d82262f12df4d55fa8ec6ac392d3 (diff)
downloadppo-43609ca84694acca988dc0ae591c69ac447659b2.tar.xz
chromium: Remove obsolete versions and patches
Diffstat (limited to 'www-client/chromium/files/chromium-noexcept-3.patch')
-rw-r--r--www-client/chromium/files/chromium-noexcept-3.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/www-client/chromium/files/chromium-noexcept-3.patch b/www-client/chromium/files/chromium-noexcept-3.patch
deleted file mode 100644
index b5ca5a3..0000000
--- a/www-client/chromium/files/chromium-noexcept-3.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/storage/browser/fileapi/file_system_url.cc b/storage/browser/fileapi/file_system_url.cc
-index b90cf2904..e28b1f85d 100644
---- a/storage/browser/fileapi/file_system_url.cc
-+++ b/storage/browser/fileapi/file_system_url.cc
-@@ -26,7 +26,7 @@ FileSystemURL::FileSystemURL()
-
- FileSystemURL::FileSystemURL(const FileSystemURL& other) = default;
-
--FileSystemURL::FileSystemURL(FileSystemURL&& other) noexcept = default;
-+FileSystemURL::FileSystemURL(FileSystemURL&& other) = default;
-
- FileSystemURL& FileSystemURL::operator=(FileSystemURL&& rhs) = default;
-
-diff --git a/storage/browser/fileapi/file_system_url.h b/storage/browser/fileapi/file_system_url.h
-index 8220812d0..f6b8813e2 100644
---- a/storage/browser/fileapi/file_system_url.h
-+++ b/storage/browser/fileapi/file_system_url.h
-@@ -82,7 +82,7 @@ class COMPONENT_EXPORT(STORAGE_BROWSER) FileSystemURL {
- FileSystemURL(const FileSystemURL& other);
- // Constructs FileSystemURL with the contents of |other|, which is left in
- // valid but unspecified state.
-- FileSystemURL(FileSystemURL&& other) noexcept;
-+ FileSystemURL(FileSystemURL&& other);
- ~FileSystemURL();
-
- // Replaces the contents with those of |rhs|, which is left in valid but