Selaa lähdekoodia

Fixed Freepascal TArray error

PascalCoin 7 vuotta sitten
vanhempi
commit
d803a9fce6
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/core/UBlockChain.pas

+ 1 - 1
src/core/UBlockChain.pas

@@ -192,7 +192,7 @@ Type
   End;
 
   TOpReference = UInt64;
-  TOpReferenceArray = TArray<TopReference>;
+  TOpReferenceArray = Array of TopReference;
 
   { TPCOperation }