Title: [200941] trunk/Source/WebCore
Revision
200941
Author
mcatanz...@igalia.com
Date
2016-05-16 07:40:57 -0700 (Mon, 16 May 2016)

Log Message

CSSParser.cpp triggers -Wunused-parameter
https://bugs.webkit.org/show_bug.cgi?id=157734

Reviewed by Csaba Osztrogonác.

* css/CSSParser.cpp:
(WebCore::isValidKeywordPropertyAndValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200940 => 200941)


--- trunk/Source/WebCore/ChangeLog	2016-05-16 10:28:19 UTC (rev 200940)
+++ trunk/Source/WebCore/ChangeLog	2016-05-16 14:40:57 UTC (rev 200941)
@@ -1,3 +1,13 @@
+2016-05-16  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        CSSParser.cpp triggers -Wunused-parameter
+        https://bugs.webkit.org/show_bug.cgi?id=157734
+
+        Reviewed by Csaba Osztrogonác.
+
+        * css/CSSParser.cpp:
+        (WebCore::isValidKeywordPropertyAndValue):
+
 2016-05-16  Zan Dobersek  <zdober...@igalia.com>
 
         [Cairo] GraphicsContext3D::ImageExtractor should use the correct size for copying non-image surfaces

Modified: trunk/Source/WebCore/css/CSSParser.cpp (200940 => 200941)


--- trunk/Source/WebCore/css/CSSParser.cpp	2016-05-16 10:28:19 UTC (rev 200940)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2016-05-16 14:40:57 UTC (rev 200941)
@@ -676,6 +676,8 @@
 #if ENABLE(CSS_GRID_LAYOUT)
         if (parserContext.cssGridLayoutEnabled && (valueID == CSSValueGrid || valueID == CSSValueInlineGrid))
             return true;
+#else
+        UNUSED_PARAM(parserContext);
 #endif
         break;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to