Browse Source

fcl-json: fixed compile with fpc 3.2.2

mattias 3 years ago
parent
commit
dd6ccd0fb4
1 changed files with 4 additions and 1 deletions
  1. 4 1
      packages/fcl-json/src/fpjson.pp

+ 4 - 1
packages/fcl-json/src/fpjson.pp

@@ -801,7 +801,10 @@ Function GetJSONStringParserHandler: TJSONStringParserHandler;
 
 implementation
 
-Uses typinfo,sysconst;
+Uses typinfo;
+
+const
+  HexDigits = '01234567890ABCDEF';
 
 Resourcestring
   SErrCannotConvertFromNull = 'Cannot convert data from Null value';