Browse Source

* avoid range check error

git-svn-id: trunk@18786 -
florian 14 years ago
parent
commit
2f4fcf7dee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/cclasses.pas

+ 1 - 1
compiler/cclasses.pas

@@ -46,7 +46,7 @@ interface
        tmemdebug = class
        private
           totalmem,
-          startmem : integer;
+          startmem : int64;
           infostr  : string[40];
        public
           constructor Create(const s:string);