Skip to content

Commit 90b5b0e

Browse files
committed
fix Delphi compiler guard
1 parent 0f534ef commit 90b5b0e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CryptoLib/src/Include/CryptoLib.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
{$IFDEF FPC}
2020
{$I CryptoLibFPC.inc}
2121
{$ELSE}
22-
// Delphi Tokyo and Above
23-
{$IF CompilerVersion < 32.0}
24-
{$MESSAGE ERROR 'This Library requires Delphi Tokyo or higher.'}
22+
// Delphi Sydney and Above
23+
{$IF CompilerVersion < 34.0}
24+
{$MESSAGE ERROR 'This Library requires Delphi Sydney or higher.'}
2525
{$IFEND}
2626

2727
// Silence H2586 (legacy $IFEND) on XE4+ where $ENDIF can also close $IF.

0 commit comments

Comments
 (0)