- Remove obsolete child parameter.

This commit is contained in:
ccremers 2004-10-18 13:06:22 +00:00
parent 94b3ac7c96
commit 19b3c74e65
2 changed files with 0 additions and 3 deletions

View File

@ -34,7 +34,6 @@ binding_create (Term term, int run_to, int ev_to)
b = memAlloc (sizeof (struct binding));
b->done = 0;
b->child = 0;
b->run_from = -1;
b->ev_from = -1;
b->run_to = run_to;
@ -412,7 +411,6 @@ goal_add (Term term, const int run, const int ev, const int level)
Binding b;
b = (Binding) sys->bindings->data;
b->child = 1;
}
i++;
}

View File

@ -11,7 +11,6 @@
struct binding
{
int done; //!< Iff true, it is bound
int child; //!< Signifies some tuple unfolding, to remove created bindings.
int run_from;
int ev_from;