Question
Unused Parameters in CompressedUnmappedFontCache and CompressedFontCache
I get the build warning (which is treated as an error):
```
CompressedUnmappedFontCache.cpp:146:66: error: unused parameter 'glyphNode' [-Werror=unused-parameter]
```
CompressedUnmappedFontCache.cpp:146:66: error: unused parameter 'glyphNode' [-Werror=unused-parameter]
[build] 146 | void CompressedUnmappedFontCache::unableToCache(const GlyphNode* glyphNode, int byteSize)
```
This is easily fixed with
```
This is easily fixed with
void CompressedUnmappedFontCache::unableToCache(const GlyphNode* /*glyphNode*/, int /*byteSize*/)
{
while(1);
}But, it's generated code, so I have to make this fix every time a regenerate. This warning happens in both `CompressedUnmappedFontCache` and `CompressedFontCache`.