Refactored closure context storage.

This commit is contained in:
Lewis Van Winkle
2016-02-25 14:02:44 -06:00
parent a44620f187
commit 7550e4e309
2 changed files with 19 additions and 17 deletions

View File

@@ -35,8 +35,7 @@ extern "C" {
typedef struct te_expr {
int type;
union {double value; const double *bound; const void *function;};
void *context;
struct te_expr *parameters[];
void *parameters[];
} te_expr;