jscript: Added Math_LN2 implementation.

This commit is contained in:
Piotr Caban 2009-04-02 19:54:39 +02:00 committed by Alexandre Julliard
parent 8f74c2b1a7
commit d2aed1b752
1 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ static HRESULT Math_LOG10E(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS
static HRESULT Math_LN2(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
FIXME("\n");
return E_NOTIMPL;
TRACE("\n");
return math_constant(M_LN2, flags, retv);
}
static HRESULT Math_LN10(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,