Changeset 174457 in webkit


Ignore:
Timestamp:
Oct 8, 2014 10:14:04 AM (10 years ago)
Author:
Chris Dumez
Message:

Unreviewed build fix after r174456.

I was comparing a signed int to an unsigned one.

  • platform/graphics/mac/FontCacheMac.mm:

(WebCore::shouldAutoActivateFontIfNeeded):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r174456 r174457  
     12014-10-08  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed build fix after r174456.
     4
     5        I was comparing a signed int to an unsigned one.
     6
     7        * platform/graphics/mac/FontCacheMac.mm:
     8        (WebCore::shouldAutoActivateFontIfNeeded):
     9
    1102014-10-08  Christophe Dumez  <cdumez@apple.com>
    211
  • trunk/Source/WebCore/platform/graphics/mac/FontCacheMac.mm

    r174456 r174457  
    101101
    102102    static NeverDestroyed<HashSet<AtomicString>> knownFamilies;
    103     static const unsigned maxCacheSize = 128;
     103    static const int maxCacheSize = 128;
    104104    ASSERT(knownFamilies.get().size() <= maxCacheSize);
    105105    if (knownFamilies.get().size() == maxCacheSize)
Note: See TracChangeset for help on using the changeset viewer.