Ignore:
Timestamp:
May 27, 2010, 5:36:47 AM (15 years ago)
Author:
[email protected]
Message:

2010-05-27 Kwang Yul Seo <[email protected]>

Reviewed by Darin Adler.

RVCT does not have strnstr.
https://bugs.webkit.org/show_bug.cgi?id=39719

Add COMPILER(RVCT) guard to strnstr in StringExtras.h as RVCT does not provide strnstr.

  • wtf/StringExtras.h:
File:
1 edited

Legend:

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

    r59921 r60294  
    8787#endif
    8888
    89 #if COMPILER(MSVC) || OS(WINDOWS) || OS(LINUX) || OS(SOLARIS)
     89#if COMPILER(MSVC) || COMPILER(RVCT) || OS(WINDOWS) || OS(LINUX) || OS(SOLARIS)
    9090// FIXME: should check HAVE_STRNSTR
    9191
Note: See TracChangeset for help on using the changeset viewer.