summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-noexcept-3.patch
diff options
context:
space:
mode:
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, 26 insertions, 0 deletions
diff --git a/www-client/chromium/files/chromium-noexcept-3.patch b/www-client/chromium/files/chromium-noexcept-3.patch
new file mode 100644
index 0000000..b5ca5a3
--- /dev/null
+++ b/www-client/chromium/files/chromium-noexcept-3.patch
@@ -0,0 +1,26 @@
+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