Title: [213486] trunk/Source/WebCore
Revision
213486
Author
mcatanz...@igalia.com
Date
2017-03-06 18:32:55 -0800 (Mon, 06 Mar 2017)

Log Message

Unreviewed, fix unused parameter warning after r213464

* platform/graphics/freetype/FontCacheFreeType.cpp:
(WebCore::FontCache::getFontSelectionCapabilitiesInFamily):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (213485 => 213486)


--- trunk/Source/WebCore/ChangeLog	2017-03-07 02:31:36 UTC (rev 213485)
+++ trunk/Source/WebCore/ChangeLog	2017-03-07 02:32:55 UTC (rev 213486)
@@ -1,3 +1,10 @@
+2017-03-06  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix unused parameter warning after r213464
+
+        * platform/graphics/freetype/FontCacheFreeType.cpp:
+        (WebCore::FontCache::getFontSelectionCapabilitiesInFamily):
+
 2017-03-06  Michael Saboff  <msab...@apple.com>
 
         Take advantage of fast permissions switching of JIT memory for devices that support it

Modified: trunk/Source/WebCore/platform/graphics/freetype/FontCacheFreeType.cpp (213485 => 213486)


--- trunk/Source/WebCore/platform/graphics/freetype/FontCacheFreeType.cpp	2017-03-07 02:31:36 UTC (rev 213485)
+++ trunk/Source/WebCore/platform/graphics/freetype/FontCacheFreeType.cpp	2017-03-07 02:32:55 UTC (rev 213486)
@@ -138,7 +138,7 @@
     RELEASE_ASSERT_NOT_REACHED();
 }
 
-Vector<FontSelectionCapabilities> FontCache::getFontSelectionCapabilitiesInFamily(const AtomicString& familyName)
+Vector<FontSelectionCapabilities> FontCache::getFontSelectionCapabilitiesInFamily(const AtomicString&)
 {
     return { };
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to