Kompilátor ma otravuje touto hláškou
DataImport.pas(368): W1050 WideChar reduced to byte char in set expressions. Consider using 'CharInSet' function in 'SysUtils' unit.
Podľa návodu (D12 - mám D11) som urobil nasledovné
procedure Foo;
var
Mayset: set of '('..'{'; // ; je označený ako chyba
begin
Mayset := ['(', '/', '<', '[', '\', '{'];
if CharInSet(Title[1], Mayset) then
// if Title[1] in ['(', '/', '<', '[', '\', '{'] then // pôvodné riešenie
Skompiluje sa to, ale oznam pretrváva.
Ako to má byť správne?