summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/expr.h
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2013-02-11 10:16:58 +0000
committerkr.angelov <kr.angelov@gmail.com>2013-02-11 10:16:58 +0000
commit10ef298fa00bd100bc854c5c8570a550f470dde4 (patch)
treee8cd18564f1967a7999c16296f4a1005f6cd42b6 /src/runtime/c/pgf/expr.h
parent88d20ca61238edb14e1151509484c60ef5d967ee (diff)
the grammar reader in the C runtime is completely rewritten and it doesn't use the generic programming API
Diffstat (limited to 'src/runtime/c/pgf/expr.h')
-rw-r--r--src/runtime/c/pgf/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/c/pgf/expr.h b/src/runtime/c/pgf/expr.h
index 4c1bddbae..5828289f1 100644
--- a/src/runtime/c/pgf/expr.h
+++ b/src/runtime/c/pgf/expr.h
@@ -68,7 +68,7 @@ extern GU_DECLARE_TYPE(PgfHypos, GuSeq);
struct PgfType {
PgfHypos hypos;
PgfCId cid; /// XXX: resolve to PgfCat*?
- int n_exprs;
+ size_t n_exprs;
PgfExpr exprs[];
};