mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-27 03:29:12 +02:00
Debugger: fix compile with fpc 3.2.0
This commit is contained in:
parent
0c85e0ffb6
commit
f50c813229
@ -64,7 +64,9 @@ begin
|
||||
if FInternalJSon = nil then
|
||||
try
|
||||
//FInternalJSon := GetJSON(AsString);
|
||||
P := TJSONParser.Create(AsString, [joUTF8,joComments,joIgnoreTrailingComma,joBOMCheck{,joIgnoreDuplicates}]);
|
||||
P := TJSONParser.Create(AsString, [joUTF8,joComments,joIgnoreTrailingComma
|
||||
{$IF FPC_VERSION >= 030202} , joBOMCheck {$ENDIF}
|
||||
{,joIgnoreDuplicates}]);
|
||||
try
|
||||
FInternalJSon := P.Parse;
|
||||
finally
|
||||
|
Loading…
Reference in New Issue
Block a user