Title: [276250] trunk/Tools
Revision
276250
Author
[email protected]
Date
2021-04-19 06:43:09 -0700 (Mon, 19 Apr 2021)

Log Message

Unreviewed, WPE Minibrowser build warning fix.

* MiniBrowser/wpe/main.cpp: No need to use typedef for this struct declaration.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (276249 => 276250)


--- trunk/Tools/ChangeLog	2021-04-19 13:28:40 UTC (rev 276249)
+++ trunk/Tools/ChangeLog	2021-04-19 13:43:09 UTC (rev 276250)
@@ -1,3 +1,9 @@
+2021-04-19  Philippe Normand  <[email protected]>
+
+        Unreviewed, WPE Minibrowser build warning fix.
+
+        * MiniBrowser/wpe/main.cpp: No need to use typedef for this struct declaration.
+
 2021-04-19  Kimmo Kinnunen  <[email protected]>
 
         Enable -Wthread-safety, add attributes to custom lock classes, and provide macros to declare guards

Modified: trunk/Tools/MiniBrowser/wpe/main.cpp (276249 => 276250)


--- trunk/Tools/MiniBrowser/wpe/main.cpp	2021-04-19 13:28:40 UTC (rev 276249)
+++ trunk/Tools/MiniBrowser/wpe/main.cpp	2021-04-19 13:43:09 UTC (rev 276250)
@@ -135,11 +135,11 @@
     return std::make_unique<WPEToolingBackends::WindowViewBackend>(width, height);
 }
 
-typedef struct {
+struct FilterSaveData {
     GMainLoop* mainLoop { nullptr };
     WebKitUserContentFilter* filter { nullptr };
     GError* error { nullptr };
-} FilterSaveData;
+};
 
 static void filterSavedCallback(WebKitUserContentFilterStore *store, GAsyncResult *result, FilterSaveData *data)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to