From 2a49e4e1d64ef2df0bb2a8a3822f7fa1048e687f Mon Sep 17 00:00:00 2001 From: "kr.angelov" Date: Tue, 17 Sep 2013 12:45:00 +0000 Subject: a major refactoring in the C runtime. GuList is now removed and replaced with GuSeq. The GuSeq/GuBuf API is simplified --- src/runtime/c/pgf/expr.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/runtime/c/pgf/expr.h') diff --git a/src/runtime/c/pgf/expr.h b/src/runtime/c/pgf/expr.h index 485464207..08200a716 100644 --- a/src/runtime/c/pgf/expr.h +++ b/src/runtime/c/pgf/expr.h @@ -14,8 +14,6 @@ typedef GuVariant PgfExpr; extern GU_DECLARE_TYPE(PgfExpr, GuVariant); -typedef GuList(PgfExpr) PgfExprs; - typedef struct PgfHypo PgfHypo; typedef struct PgfType PgfType; @@ -63,10 +61,9 @@ struct PgfHypo { }; typedef GuSeq PgfHypos; -extern GU_DECLARE_TYPE(PgfHypos, GuSeq); struct PgfType { - PgfHypos hypos; + PgfHypos* hypos; PgfCId cid; /// XXX: resolve to PgfCat*? size_t n_exprs; PgfExpr exprs[]; -- cgit v1.2.3