2009-11-05
2009-11-05 16:51:45 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
4fee03b50758c9f330d4a7772398bb173088bbeb
(6 lines)
(+3/-3)
[
Show
| Annotate
]
Branch: 7.9
Oops...
Rev: src/operators.c:1.257
2:
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: operators.c,v 1.256 2009/11/05 13:48:55 grubba Exp $
+ || $Id: operators.c,v 1.257 2009/11/05 16:51:45 grubba Exp $
*/
#include "global.h"
324: Inside #if defined(AUTO_BIGNUM)
if( (sp[-1].u.string->len >= 10) || sp[-1].u.string->size_shift )
convert_stack_top_string_to_inumber(10);
else
- #else
+ #endif /* AUTO_BIGNUM */
{
INT_TYPE i = STRTOL(sp[-1].u.string->str, 0, 10);
free_string(sp[-1].u.string);
332:
sp[-1].subtype = NUMBER_NUMBER;
sp[-1].u.integer=i;
}
- #endif /* AUTO_BIGNUM */
+
break;
case PIKE_T_INT: