Title: [268740] trunk/Tools
Revision
268740
Author
commit-qu...@webkit.org
Date
2020-10-20 10:05:56 -0700 (Tue, 20 Oct 2020)

Log Message

TestOptionsGeneratedKeys.h:30:52: warning: backslash-newline at end of file
https://bugs.webkit.org/show_bug.cgi?id=217957

Patch by Michael Catanzaro <mcatanz...@gnome.org> on 2020-10-20
Reviewed by Sam Weinig.

I guess this is bad because something else from another header could be on the next line,
depending on the order that headers get included into the source file. So let's add a blank
line to the end of the file.

* WebKitTestRunner/Scripts/PreferencesTemplates/TestOptionsGeneratedKeys.h.erb:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (268739 => 268740)


--- trunk/Tools/ChangeLog	2020-10-20 17:04:06 UTC (rev 268739)
+++ trunk/Tools/ChangeLog	2020-10-20 17:05:56 UTC (rev 268740)
@@ -1,3 +1,16 @@
+2020-10-20  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        TestOptionsGeneratedKeys.h:30:52: warning: backslash-newline at end of file
+        https://bugs.webkit.org/show_bug.cgi?id=217957
+
+        Reviewed by Sam Weinig.
+
+        I guess this is bad because something else from another header could be on the next line,
+        depending on the order that headers get included into the source file. So let's add a blank
+        line to the end of the file.
+
+        * WebKitTestRunner/Scripts/PreferencesTemplates/TestOptionsGeneratedKeys.h.erb:
+
 2020-10-16  Jer Noble  <jer.no...@apple.com>
 
         Add skeleton implementation of Media Session API

Modified: trunk/Tools/WebKitTestRunner/Scripts/PreferencesTemplates/TestOptionsGeneratedKeys.h.erb (268739 => 268740)


--- trunk/Tools/WebKitTestRunner/Scripts/PreferencesTemplates/TestOptionsGeneratedKeys.h.erb	2020-10-20 17:04:06 UTC (rev 268739)
+++ trunk/Tools/WebKitTestRunner/Scripts/PreferencesTemplates/TestOptionsGeneratedKeys.h.erb	2020-10-20 17:05:56 UTC (rev 268740)
@@ -31,4 +31,5 @@
 <%- for @pref in @exposedPreferences do -%>
     { "<%= @pref.name %>", TestHeaderKeyType::<%= @pref.typeUpper %>WebPreference }, \
 <%- end -%>
-\
+    \
+
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to