- implemented missing 'exact' parameter for ThinkerIterator.Next.

This commit is contained in:
Christoph Oelckers 2018-12-02 23:15:34 +01:00
parent d96d505520
commit d222e82bbc
1 changed files with 2 additions and 1 deletions

View File

@ -992,7 +992,8 @@ DEFINE_ACTION_FUNCTION(DThinkerIterator, Create)
DEFINE_ACTION_FUNCTION(DThinkerIterator, Next) DEFINE_ACTION_FUNCTION(DThinkerIterator, Next)
{ {
PARAM_SELF_PROLOGUE(DThinkerIterator); PARAM_SELF_PROLOGUE(DThinkerIterator);
ACTION_RETURN_OBJECT(self->Next()); PARAM_BOOL(exact);
ACTION_RETURN_OBJECT(self->Next(exact));
} }
DEFINE_ACTION_FUNCTION(DThinkerIterator, Reinit) DEFINE_ACTION_FUNCTION(DThinkerIterator, Reinit)