Title: [280376] trunk/Source/WebCore
Revision
280376
Author
[email protected]
Date
2021-07-27 22:55:23 -0700 (Tue, 27 Jul 2021)

Log Message

Unreviewed. Remove the build warning below since r280332.
warning: redundant move in return statement [-Wredundant-move]

No new tests, no new behaviors.

* html/DOMFormData.cpp:
(WebCore::DOMFormData::create):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (280375 => 280376)


--- trunk/Source/WebCore/ChangeLog	2021-07-28 04:35:15 UTC (rev 280375)
+++ trunk/Source/WebCore/ChangeLog	2021-07-28 05:55:23 UTC (rev 280376)
@@ -1,3 +1,13 @@
+2021-07-27  Joonghun Park  <[email protected]>
+
+        Unreviewed. Remove the build warning below since r280332.
+        warning: redundant move in return statement [-Wredundant-move]
+
+        No new tests, no new behaviors.
+
+        * html/DOMFormData.cpp:
+        (WebCore::DOMFormData::create):
+
 2021-07-27  Devin Rousso  <[email protected]>
 
         [Modern Media Controls] [macOS] Overflow button still shows as `on` even after contextmenu is dismissed

Modified: trunk/Source/WebCore/html/DOMFormData.cpp (280375 => 280376)


--- trunk/Source/WebCore/html/DOMFormData.cpp	2021-07-28 04:35:15 UTC (rev 280375)
+++ trunk/Source/WebCore/html/DOMFormData.cpp	2021-07-28 05:55:23 UTC (rev 280376)
@@ -45,7 +45,7 @@
 {
     auto formData = adoptRef(*new DOMFormData);
     if (!form)
-        return WTFMove(formData);
+        return formData;
     
     auto result = form->constructEntryList(WTFMove(formData), nullptr, HTMLFormElement::IsMultipartForm::Yes);
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to