Ignore:
Timestamp:
Sep 30, 2008, 12:38:36 PM (17 years ago)
Author:
[email protected]
Message:

Build fix.

Move InternalFunction::classInfo implementation into the .cpp file to
prevent the vtable for InternalFunction being generated as a weak symbol.
Has no effect on SunSpider.

Rubber-stamped by Sam Weinig.

  • kjs/InternalFunction.cpp:

(JSC::InternalFunction::classInfo):

  • kjs/InternalFunction.h:
File:
1 edited

Legend:

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

    r36766 r37103  
    3333const ClassInfo InternalFunction::info = { "Function", 0, 0, 0 };
    3434
     35const ClassInfo* InternalFunction::classInfo() const
     36{
     37    return &info;
     38}
     39
    3540InternalFunction::InternalFunction(ExecState* exec)
    3641    : JSObject(exec->globalData().nullProtoStructureID)
Note: See TracChangeset for help on using the changeset viewer.