Skip to content

Commit a40f9ba

Browse files
committed
represent EXPRESS reals with double, not float
1 parent 742be71 commit a40f9ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/express/expr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ struct Funcall {
142142

143143
union expr_union {
144144
int integer;
145-
float real;
145+
double real;
146146
char * attribute; /**< inverse .... for 'attr' */
147147
char * binary;
148148
int logical;

0 commit comments

Comments
 (0)