Changeset 12315 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Jan 23, 2006, 9:10:45 AM (19 years ago)
Author:
darin
Message:

Reviewed by John Sullivan.

  • kxmlcore/PassRefPtr.h: Fix assignment operator from RefPtr of a different type by calling get() instead of going directly at m_ptr.
  • kxmlcore/RefPtr.h: Ditto.
  • other changes
  • JavaScriptCore.xcodeproj/project.pbxproj: Xcode decided to change this file. It's just a resorted list of keys in a dictionary.
  • kjs/fpconst.cpp: Wrap this file in #if APPLE since the alternate version in internal.cpp is in #if __APPLE. This file is to give us the "no init routine" property we want to have on OS X.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/fpconst.cpp

    r12301 r12315  
    11/*
    2  *  Copyright (C) 2003 Apple Computer, Inc.
     2 *  Copyright (C) 2003, 2006 Apple Computer, Inc.
    33 *
    44 *  This library is free software; you can redistribute it and/or
     
    2121#include "config.h"
    2222
     23namespace KJS {
     24
    2325// This file exists because JavaScriptCore needs to define the NaN and Inf globals in a way
    2426// that does not use a static initializer so we don't have a framework initialization routine.
     
    3032// It would be good to figure out a 100% clean way that still avoids code that runs at init time.
    3133
    32 namespace KJS {
     34#if __APPLE__
    3335
    3436#ifdef WORDS_BIGENDIAN
     
    4042#endif
    4143
    42 };
     44#endif
     45
     46}
Note: See TracChangeset for help on using the changeset viewer.