소스 검색

Replace aint (which is a compiler specific type) by ptruint type, which is defined in system unit

git-svn-id: trunk@40102 -
pierre 7 년 전
부모
커밋
89ee644919
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tests/test/tarray5.pp

+ 2 - 2
tests/test/tarray5.pp

@@ -2,8 +2,8 @@
 
 var
   { This shouldn't be allowed, the number of elements
-    doesn't fit in a aint }
-  mem  : array[0..high(aint)] of byte ;
+    doesn't fit in the address range  }
+  mem  : array[0..high(ptruint)] of byte ;
 
 begin
 end;