mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
small fix of json parser.
This commit is contained in:
parent
a52c3efa8e
commit
f904807696
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ PROCEDURE GetNoneTerminalKeys(self : JsonTypePointer; VAR destination : ARRAY OF
|
|||
VAR
|
||||
i: LONGINT;
|
||||
BEGIN
|
||||
FOR i := 0 TO LEN(self.NonTerminalKeys) - 1 DO
|
||||
FOR i := 0 TO self.NonTerminalNumber - 1 DO
|
||||
destination[i] := self.NonTerminalKeys[i];
|
||||
END;
|
||||
END GetNoneTerminalKeys;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue