Title: [217964] trunk/Source/WebCore
Revision
217964
Author
[email protected]
Date
2017-06-08 23:12:51 -0700 (Thu, 08 Jun 2017)

Log Message

Unreviewed. Fix unused parameter warning after r217955.

* platform/graphics/FontFamilySpecificationNull.h:
(WebCore::FontFamilySpecificationNull::fontRanges):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (217963 => 217964)


--- trunk/Source/WebCore/ChangeLog	2017-06-09 05:26:41 UTC (rev 217963)
+++ trunk/Source/WebCore/ChangeLog	2017-06-09 06:12:51 UTC (rev 217964)
@@ -1,3 +1,10 @@
+2017-06-08  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix unused parameter warning after r217955.
+
+        * platform/graphics/FontFamilySpecificationNull.h:
+        (WebCore::FontFamilySpecificationNull::fontRanges):
+
 2017-06-08  Yoav Weiss  <[email protected]>
 
         [preload] Mandatory `as` value and related spec alignments

Modified: trunk/Source/WebCore/platform/graphics/FontFamilySpecificationNull.h (217963 => 217964)


--- trunk/Source/WebCore/platform/graphics/FontFamilySpecificationNull.h	2017-06-09 05:26:41 UTC (rev 217963)
+++ trunk/Source/WebCore/platform/graphics/FontFamilySpecificationNull.h	2017-06-09 06:12:51 UTC (rev 217964)
@@ -33,7 +33,7 @@
 public:
     FontFamilySpecificationNull() = delete;
     
-    FontRanges fontRanges(const FontDescription& fontDescription) const
+    FontRanges fontRanges(const FontDescription&) const
     {
         ASSERT_NOT_REACHED();
         return FontRanges();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to