Fix missing return from decimal parse.
This commit is contained in:
parent
27f7a00df0
commit
b0f7c33ab1
|
|
@ -19,7 +19,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||
*/
|
||||
#if !defined(WINNT) && !defined(macintosh)
|
||||
#ident "$Id: lexor.lex,v 1.75 2003/01/26 21:15:58 steve Exp $"
|
||||
#ident "$Id: lexor.lex,v 1.76 2003/02/02 18:58:36 steve Exp $"
|
||||
#endif
|
||||
|
||||
# include "config.h"
|
||||
|
|
@ -976,6 +976,7 @@ static verinum*make_unsized_dec(const char*txt)
|
|||
{
|
||||
verinum*tmp = make_dec_with_size(INTEGER_WIDTH, false, txt+1);
|
||||
tmp->has_sign(true);
|
||||
return tmp;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue