Title: [293122] trunk/Source/WebCore
Revision
293122
Author
[email protected]
Date
2022-04-20 15:09:28 -0700 (Wed, 20 Apr 2022)

Log Message

Add missing WTFMove() in MIMETypeRegistryThreadGlobalData()
https://bugs.webkit.org/show_bug.cgi?id=239565

Reviewed by Sam Weinig.

* platform/MIMETypeRegistry.h:
(WebCore::MIMETypeRegistryThreadGlobalData::MIMETypeRegistryThreadGlobalData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (293121 => 293122)


--- trunk/Source/WebCore/ChangeLog	2022-04-20 21:47:14 UTC (rev 293121)
+++ trunk/Source/WebCore/ChangeLog	2022-04-20 22:09:28 UTC (rev 293122)
@@ -1,3 +1,13 @@
+2022-04-20  Chris Dumez  <[email protected]>
+
+        Add missing WTFMove() in MIMETypeRegistryThreadGlobalData()
+        https://bugs.webkit.org/show_bug.cgi?id=239565
+
+        Reviewed by Sam Weinig.
+
+        * platform/MIMETypeRegistry.h:
+        (WebCore::MIMETypeRegistryThreadGlobalData::MIMETypeRegistryThreadGlobalData):
+
 2022-04-20  Alan Bujtas  <[email protected]>
 
         [IFC][Integration] Do not call WebPreferences::simpleLineLayoutEnabled in canUseForLineLayoutWithReason

Modified: trunk/Source/WebCore/platform/MIMETypeRegistry.h (293121 => 293122)


--- trunk/Source/WebCore/platform/MIMETypeRegistry.h	2022-04-20 21:47:14 UTC (rev 293121)
+++ trunk/Source/WebCore/platform/MIMETypeRegistry.h	2022-04-20 22:09:28 UTC (rev 293122)
@@ -42,7 +42,7 @@
     WTF_MAKE_FAST_ALLOCATED;
 public:
     MIMETypeRegistryThreadGlobalData(HashSet<String, ASCIICaseInsensitiveHash>&& supportedImageMIMETypesForEncoding)
-        : m_supportedImageMIMETypesForEncoding(supportedImageMIMETypesForEncoding)
+        : m_supportedImageMIMETypesForEncoding(WTFMove(supportedImageMIMETypesForEncoding))
     { }
 
     const HashSet<String, ASCIICaseInsensitiveHash>& supportedImageMIMETypesForEncoding() const { return m_supportedImageMIMETypesForEncoding; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to