Changeset 205332 in webkit


Ignore:
Timestamp:
Sep 1, 2016 7:43:52 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

jsc: fix cmake build missing symbol getPropertySlot
https://bugs.webkit.org/show_bug.cgi?id=161521

Patch by JF Bastien <jfbastien@apple.com> on 2016-09-01
Reviewed by Saam Barati.

  • runtime/IntlDateTimeFormat.cpp: include JSCInlines.h
  • runtime/IntlNumberFormat.cpp: include JSCInlines.h
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r205330 r205332  
     12016-09-01  JF Bastien  <jfbastien@apple.com>
     2
     3        jsc: fix cmake build missing symbol getPropertySlot
     4        https://bugs.webkit.org/show_bug.cgi?id=161521
     5
     6        Reviewed by Saam Barati.
     7
     8        * runtime/IntlDateTimeFormat.cpp: include JSCInlines.h
     9        * runtime/IntlNumberFormat.cpp: include JSCInlines.h
     10
    1112016-09-01  JF Bastien  <jfbastien@apple.com>
    212
  • trunk/Source/JavaScriptCore/runtime/IntlDateTimeFormat.cpp

    r205198 r205332  
    3535#include "IntlObject.h"
    3636#include "JSBoundFunction.h"
    37 #include "JSCJSValueInlines.h"
    3837#include "JSCellInlines.h"
     38#include "JSCInlines.h"
    3939#include "ObjectConstructor.h"
    40 #include "SlotVisitorInlines.h"
    41 #include "StructureInlines.h"
    4240#include <unicode/ucal.h>
    4341#include <unicode/udatpg.h>
  • trunk/Source/JavaScriptCore/runtime/IntlNumberFormat.cpp

    r205198 r205332  
    3232
    3333#include "Error.h"
    34 #include "IdentifierInlines.h"
    3534#include "IntlNumberFormatConstructor.h"
    3635#include "IntlObject.h"
    3736#include "JSBoundFunction.h"
    38 #include "JSCJSValueInlines.h"
    3937#include "JSCellInlines.h"
     38#include "JSCInlines.h"
    4039#include "ObjectConstructor.h"
    41 #include "SlotVisitorInlines.h"
    42 #include "StructureInlines.h"
    4340
    4441namespace JSC {
Note: See TracChangeset for help on using the changeset viewer.