Title: [205406] trunk/Source/WebCore
Revision
205406
Author
[email protected]
Date
2016-09-03 08:21:54 -0700 (Sat, 03 Sep 2016)

Log Message

Silence -Wparentheses warning triggered by r205266

Unreviewed

* platform/URL.cpp:
(WebCore::URL::URL):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (205405 => 205406)


--- trunk/Source/WebCore/ChangeLog	2016-09-03 14:52:33 UTC (rev 205405)
+++ trunk/Source/WebCore/ChangeLog	2016-09-03 15:21:54 UTC (rev 205406)
@@ -1,3 +1,12 @@
+2016-09-03  Michael Catanzaro  <[email protected]>
+
+        Silence -Wparentheses warning triggered by r205266
+
+        Unreviewed
+
+        * platform/URL.cpp:
+        (WebCore::URL::URL):
+
 2016-09-03  Joseph Pecoraro  <[email protected]>
 
         Use ASCIILiteral in some more places

Modified: trunk/Source/WebCore/platform/URL.cpp (205405 => 205406)


--- trunk/Source/WebCore/platform/URL.cpp	2016-09-03 14:52:33 UTC (rev 205405)
+++ trunk/Source/WebCore/platform/URL.cpp	2016-09-03 15:21:54 UTC (rev 205406)
@@ -442,7 +442,7 @@
     if (URLParser::enabled()) {
         URLParser parser;
         *this = parser.parse(url);
-        ASSERT(url.isEmpty() && m_string.isEmpty() || url == m_string); // FIXME: Investigate parsing non-null empty ParsedURLStrings.
+        ASSERT((url.isEmpty() && m_string.isEmpty()) || url == m_string); // FIXME: Investigate parsing non-null empty ParsedURLStrings.
     } else {
         parse(url);
 #if OS(WINDOWS)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to