Changeset 260499 in webkit


Ignore:
Timestamp:
Apr 21, 2020 9:07:44 PM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, fix windows build failure
https://bugs.webkit.org/show_bug.cgi?id=210834

  • runtime/Options.cpp:

(JSC::strncasecmp):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r260490 r260499  
     12020-04-21  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, fix windows build failure
     4        https://bugs.webkit.org/show_bug.cgi?id=210834
     5
     6        * runtime/Options.cpp:
     7        (JSC::strncasecmp):
     8
    192020-04-21  Yusuke Suzuki  <ysuzuki@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/Options.cpp

    r260481 r260499  
    536536}
    537537
     538#if OS(WINDOWS)
     539// FIXME: Use equalLettersIgnoringASCIICase.
     540inline bool strncasecmp(const char* str1, const char* str2, size_t n)
     541{
     542    return _strnimp(str1, str2, n);
     543}
     544#endif
     545
    538546void Options::initialize()
    539547{
Note: See TracChangeset for help on using the changeset viewer.