Ignore:
Timestamp:
Feb 12, 2009, 11:30:16 PM (16 years ago)
Author:
[email protected]
Message:

Fix the build for other platforms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/RandomNumber.cpp

    r40937 r40967  
    7272    part1 >>= 5; // drop the low 5 bits
    7373    part2 >>= 4; // drop the low 4 bits
    74     fullRandom = part1;
     74    uint64_t fullRandom = part1;
    7575    fullRandom <<= 27;
    7676    fullRandom |= part2;
Note: See TracChangeset for help on using the changeset viewer.