Changeset 51199 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 19, 2009, 12:12:40 PM (16 years ago)
Author:
[email protected]
Message:

2009-11-19 Laszlo Gombos <Laszlo Gombos>

Reviewed by Darin Adler.

Remove HAVE(STRING_H) guard from JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=31668

  • config.h:
  • runtime/UString.cpp:
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r51198 r51199  
     12009-11-19  Laszlo Gombos  <[email protected]>
     2
     3        Reviewed by Darin Adler.
     4
     5        Remove HAVE(STRING_H) guard from JavaScriptCore
     6        https://bugs.webkit.org/show_bug.cgi?id=31668
     7
     8        * config.h:
     9        * runtime/UString.cpp:
     10
    1112009-11-19  Dumitru Daniliuc  <[email protected]>
    212
  • trunk/JavaScriptCore/config.h

    r50628 r51199  
    5858/* FIXME: if all platforms have these, do they really need #defines? */
    5959#define HAVE_STDINT_H 1
    60 #define HAVE_STRING_H 1
    6160
    6261#define WTF_CHANGES 1
  • trunk/JavaScriptCore/runtime/UString.cpp

    r51197 r51199  
    3636#include <stdio.h>
    3737#include <stdlib.h>
     38#include <string.h>
    3839#include <wtf/ASCIICType.h>
    3940#include <wtf/Assertions.h>
     
    4445#include <wtf/StringExtras.h>
    4546
    46 #if HAVE(STRING_H)
    47 #include <string.h>
    48 #endif
    4947#if HAVE(STRINGS_H)
    5048#include <strings.h>
Note: See TracChangeset for help on using the changeset viewer.