Title: [279805] trunk/Source/WebKit
Revision
279805
Author
[email protected]
Date
2021-07-10 09:48:42 -0700 (Sat, 10 Jul 2021)

Log Message

Unreviewed follow-up to r279802 to address review feedback from Sam Weinig.

* NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
(WebKit::buildList):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (279804 => 279805)


--- trunk/Source/WebKit/ChangeLog	2021-07-10 05:35:51 UTC (rev 279804)
+++ trunk/Source/WebKit/ChangeLog	2021-07-10 16:48:42 UTC (rev 279805)
@@ -1,3 +1,10 @@
+2021-07-10  Chris Dumez  <[email protected]>
+
+        Unreviewed follow-up to r279802 to address review feedback from Sam Weinig.
+
+        * NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:
+        (WebKit::buildList):
+
 2021-07-09  Chris Dumez  <[email protected]>
 
         [ITP] Improve ResourceLoadStatisticsDatabaseStore's buildList() and use it in more places

Modified: trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp (279804 => 279805)


--- trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp	2021-07-10 05:35:51 UTC (rev 279804)
+++ trunk/Source/WebKit/NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp	2021-07-10 16:48:42 UTC (rev 279805)
@@ -331,9 +331,9 @@
 {
     StringBuilder builder;
     for (auto& value : values) {
-        if constexpr (std::is_arithmetic_v<std::remove_reference_t<decltype(value)>>) {
+        if constexpr (std::is_arithmetic_v<std::remove_reference_t<decltype(value)>>)
             builder.append(builder.isEmpty() ? "" : ", ", value);
-        } else
+        else
             builder.append(builder.isEmpty() ? "" : ", ", '"', value, '"');
     }
     return builder.toString();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to