Menu

#15 NativeXml.pas Delphi XE compile problem

New
nobody
None
Medium
Defect
2015-01-13
2015-01-13
Anonymous
No

Originally created by: grigh...@gmail.com

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'

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.