Ignore:
Timestamp:
Mar 26, 2012, 3:04:22 PM (13 years ago)
Author:
[email protected]
Message:

Tried to fix the Windows build.

  • yarr/YarrPattern.cpp:

(JSC::Yarr::CharacterClassConstructor::putRange):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/yarr/YarrPattern.cpp

    r112143 r112152  
    133133        while (true) {
    134134            // Handle the range [lo .. end]
    135             UChar end = std::min(info->end, hi);
     135            UChar end = std::min<UChar>(info->end, hi);
    136136
    137137            switch (info->type) {
Note: See TracChangeset for help on using the changeset viewer.