Ignore:
Timestamp:
May 4, 2005, 5:07:02 PM (20 years ago)
Author:
darin
Message:

Reviewed by Dave Hyatt.

  • another gcc-4.0-related fix
  • bindings/runtime_root.h: Take off extra namespace prefixes that apparently cause problems compiling with gcc 4.0, although I have not observed the problems.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bindings/runtime_root.h

    r8384 r9110  
    3939
    4040extern CFMutableDictionaryRef findReferenceDictionary(ObjectImp *imp);
    41 extern const Bindings::RootObject *rootForImp (ObjectImp *imp);
    42 extern const Bindings::RootObject *KJS::Bindings::rootForInterpreter (KJS::Interpreter *interpreter);
    43 extern void addNativeReference (const Bindings::RootObject *root, ObjectImp *imp);
     41extern const RootObject *rootForImp (ObjectImp *imp);
     42extern const RootObject *rootForInterpreter (Interpreter *interpreter);
     43extern void addNativeReference (const RootObject *root, ObjectImp *imp);
    4444extern void removeNativeReference (ObjectImp *imp);
    4545
     
    5858    }
    5959   
    60     void setRootObjectImp (KJS::ObjectImp *i) {
     60    void setRootObjectImp (ObjectImp *i) {
    6161        _imp = i;
    6262#if !USE_CONSERVATIVE_GC
     
    6969    }
    7070   
    71     KJS::ObjectImp *rootObjectImp() const { return _imp; }
     71    ObjectImp *rootObjectImp() const { return _imp; }
    7272   
    73     void setInterpreter (KJS::Interpreter *i);
    74     KJS::Interpreter *interpreter() const { return _interpreter; }
     73    void setInterpreter (Interpreter *i);
     74    Interpreter *interpreter() const { return _interpreter; }
    7575
    7676    void removeAllNativeReferences ();
     
    9292private:
    9393    const void *_nativeHandle;
    94     KJS::ObjectImp *_imp;
    95     KJS::Interpreter *_interpreter;
     94    ObjectImp *_imp;
     95    Interpreter *_interpreter;
    9696
    9797    static FindRootObjectForNativeHandleFunctionPtr _findRootObjectForNativeHandleFunctionPtr;
Note: See TracChangeset for help on using the changeset viewer.