From 34a65a5c9bcba5cb724bc107cb2557d9a7561da6 Mon Sep 17 00:00:00 2001 From: erg Date: Tue, 17 May 2005 15:53:06 +0000 Subject: [PATCH] Fix type bug in gvpr: statically, object type is the union of graphs, nodes and edges --- cmd/gvpr/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gvpr/compile.c b/cmd/gvpr/compile.c index de501d0eb..1e25a8799 100644 --- a/cmd/gvpr/compile.c +++ b/cmd/gvpr/compile.c @@ -1070,7 +1070,7 @@ static tctype typeChk(tctype intype, Exid_t * sym) if (dom) { if (!intype) - intype = Y(E) | Y(V); /* type of $ */ + intype = YALL; /* type of $ */ if (!(dom & intype)) rng = 0; } else if (intype) -- 2.40.0