Browse Source

minor change.

Ugochukwu Mmaduekwe 7 years ago
parent
commit
bedc1e461a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      CryptoLib/src/Asn1/ClpAsn1Sequence.pas
  2. 1 1
      CryptoLib/src/Asn1/ClpAsn1Set.pas

+ 1 - 1
CryptoLib/src/Asn1/ClpAsn1Sequence.pas

@@ -200,7 +200,7 @@ begin
   l1 := GetEnumerable;
   l2 := other.GetEnumerable;
 
-  for Idx := Low(l1) to High(l1) do
+  for Idx := System.Low(l1) to System.High(l1) do
   begin
     o1 := GetCurrent(l1[Idx]).ToAsn1Object();
     o2 := GetCurrent(l2[Idx]).ToAsn1Object();

+ 1 - 1
CryptoLib/src/Asn1/ClpAsn1Set.pas

@@ -209,7 +209,7 @@ begin
   l1 := GetEnumerable;
   l2 := other.GetEnumerable;
 
-  for Idx := Low(l1) to High(l1) do
+  for Idx := System.Low(l1) to System.High(l1) do
   begin
     o1 := GetCurrent(l1[Idx]).ToAsn1Object();
     o2 := GetCurrent(l2[Idx]).ToAsn1Object();