Make the te_expr struct valid C++ code.

This commit is contained in:
Lewis Van Winkle
2016-08-22 19:06:40 -05:00
parent 860b8ff199
commit 4c1015ab7f
2 changed files with 2 additions and 2 deletions

View File

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