Fix missing return from decimal parse.

This commit is contained in:
steve 2003-02-02 18:58:36 +00:00
parent 27f7a00df0
commit b0f7c33ab1
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}
/*