jscript: Removed useless return statement in jsval_number.

This commit is contained in:
Jacek Caban 2012-10-03 17:54:14 +02:00 committed by Alexandre Julliard
parent 5c15ca13d2
commit 730479e6a4
1 changed files with 0 additions and 1 deletions

View File

@ -154,7 +154,6 @@ static inline jsval_t jsval_number(double n)
ret.u.s.tag = 0x7ff00000;
}
}
return ret;
#else
ret.type = JSV_NUMBER;
ret.u.n = n;