mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
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:
parent
a755222dc1
commit
28125c4ade
@ -363,6 +363,10 @@ ForceFrame::ForceFrame(JSContext *cx, JSObject *target)
|
||||
{
|
||||
}
|
||||
|
||||
ForceFrame::~ForceFrame()
|
||||
{
|
||||
}
|
||||
|
||||
bool
|
||||
ForceFrame::enter()
|
||||
{
|
||||
|
@ -168,6 +168,7 @@ class JS_FRIEND_API(ForceFrame)
|
||||
|
||||
public:
|
||||
ForceFrame(JSContext *cx, JSObject *target);
|
||||
~ForceFrame();
|
||||
bool enter();
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user