如何解决从cbc5做的程序升级到cbc2009的问题
拿cbc5的一个程序在cbc2009里面编译,提示Undeclared identifier:'SListIndexError'错误
原来的程序是
function TSparseList.Get(Index: Integer): Pointer;
begin
if Index < 0 then TList.Error(SListIndexError, Index);
Result := FList[Index]
end;
在升级原来的程序到cbc2009的时候有什么要注意的呀
原来的程序是
function TSparseList.Get(Index: Integer): Pointer;
begin
if Index < 0 then TList.Error(SListIndexError, Index);
Result := FList[Index]
end;
在升级原来的程序到cbc2009的时候有什么要注意的呀
作者: mkb2004 发布时间: 2011-06-14
耶喝,还是Pascal代码。大概是SListIndexError在后来的版本中被取消掉了?略修改一下这行代码就行了。
作者: ccrun 发布时间: 2011-06-14