Bug 659207. Don't inline a constructor that consumers can't actually inline without statically linking to JS. r=luke a=sheriff

This commit is contained in:
Boris Zbarsky 2011-05-24 17:45:36 +02:00
parent a755222dc1
commit 28125c4ade
2 changed files with 5 additions and 0 deletions

View File

@ -363,6 +363,10 @@ ForceFrame::ForceFrame(JSContext *cx, JSObject *target)
{
}
ForceFrame::~ForceFrame()
{
}
bool
ForceFrame::enter()
{

View File

@ -168,6 +168,7 @@ class JS_FRIEND_API(ForceFrame)
public:
ForceFrame(JSContext *cx, JSObject *target);
~ForceFrame();
bool enter();
};