Browse Source

* applied patch by Thaddy de Koning to fix Mantis #35378: correctly declare TNativeIntHelper.MinValue

git-svn-id: trunk@41881 -
svenbarth 6 years ago
parent
commit
9d10f21b07
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/objpas/sysutils/syshelph.inc

+ 1 - 1
rtl/objpas/sysutils/syshelph.inc

@@ -523,7 +523,7 @@ Type
   public
     const
       MaxValue = High(NativeInt);
-      MinValue = Low(NativeUInt);
+      MinValue = Low(NativeInt);
   Public
     Class Function Parse(const AString: string): NativeInt; inline; static;
     Class Function Size: Integer; inline; static;