pike.git/
src/
svalue.h
Branch:
Tag:
Non-build tags
All tags
No tags
2001-08-13
2001-08-13 22:41:17 by Martin Stjernholm <mast@lysator.liu.se>
e30b29a2a761edac4ddc8b3858b5884ec439de6d (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Put integer first in union anything for union initializations.
Rev: src/svalue.h:1.94
5:
\*/ /*
-
* $Id: svalue.h,v 1.
93
2001/
07
/
05
00
:
10
:
54
mast Exp $
+
* $Id: svalue.h,v 1.
94
2001/
08
/
13
22
:
41
:
17
mast Exp $
*/ #ifndef SVALUE_H #define SVALUE_H
57:
union anything {
+
INT_TYPE integer; /* Union initializations assume this first. */
struct callable *efun; struct array *array; struct mapping *mapping;
67:
struct pike_type *type; INT32 *refs; struct ref_dummy *dummy;
-
INT_TYPE integer;
+
FLOAT_TYPE float_number; struct svalue *lval; /* only used on stack */ union anything *short_lval; /* only used on stack */