yethum / simdesign

Automatically exported from code.google.com/p/simdesign
0 stars 0 forks source link

NativeXml.pas Delphi XE compile problem #15

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
function TsdXmlParser.ReadStringUntilChar(AChar: AnsiChar): Utf8String;
var
  Count: integer;
  StartIdx: integer;
  CurrentChar: Char;//<<<<--This is problem. I am change to AnsiChar
begin
 Count := MakeDataAvailable;

  StartIdx := FUtf8CurrentIdx;
  while not FEndOfStream do
  begin

    CurrentChar := FUtf8Buffer[FUtf8CurrentIdx];//<<<<-- no [DCC Error] NativeXml.pas(6998): E2010 Incompatible types: 'Char' and 'AnsiChar'

Original issue reported on code.google.com by grigh...@gmail.com on 13 Jan 2015 at 12:25