Ignore:
Timestamp:
Apr 16, 2008, 7:31:40 AM (17 years ago)
Author:
[email protected]
Message:

Build fix.

  • kjs/date_object.cpp:
  • kjs/date_object.h: Don't include DateMath.h from date_object.h, as the latter is used from WebCore, while where the former is not available.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/date_object.h

    r31937 r31943  
    2222#define DATE_OBJECT_H
    2323
    24 #include "DateMath.h"
    2524#include "function.h"
    2625#include "JSWrapperObject.h"
     
    2928namespace KJS {
    3029
     30    struct GregorianDateTime;
    3131    class FunctionPrototype;
    3232    class ObjectPrototype;
     
    4848
    4949    private:
    50         struct Cache {
    51             double m_gregorianDateTimeCachedForMS;
    52             GregorianDateTime m_cachedGregorianDateTime;
    53             double m_gregorianDateTimeUTCCachedForMS;
    54             GregorianDateTime m_cachedGregorianDateTimeUTC;
    55         };
    56 
     50        struct Cache;
    5751        mutable Cache* m_cache;
    5852    };
Note: See TracChangeset for help on using the changeset viewer.