I have hints after build project in Delphi XE5:
[dcc32 Hint] unit.pas(140): H2443 Inline function 'TJSONPairEnumerator.GetCurrent' has not been expanded because unit 'Data.DBXPlatform' is not specified in USES list
It refers to:
uses
System.Generics.Collections, Data.DBXJSON, System.IOUtils,
System.SysUtils, System.Classes;
...
var
wzorKlucz: string;
begin
enum := wzor.GetEnumerator;
while enum.MoveNext do
...
wzorKlucz := enum.Current.JsonString.Value; //here
...
How can I disable hint for this line, or what I have is not correct ?