Ignore:
Timestamp:
Dec 11, 2009, 9:39:33 PM (15 years ago)
Author:
[email protected]
Message:

Windows build fix: Use unsigned instead of uint32_t to avoid dependencies.

  • wtf/StdLibExtras.h:

(WTF::bitCount):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/StdLibExtras.h

    r52040 r52041  
    7171
    7272    // Returns a count of the number of bits set in 'bits'.
    73     inline size_t bitCount(uint32_t bits)
     73    inline size_t bitCount(unsigned bits)
    7474    {
    7575        bits = bits - ((bits >> 1) & 0x55555555);
Note: See TracChangeset for help on using the changeset viewer.