Skip to content

Commit 5a2a7e0

Browse files
committed
remove unneeded defines
1 parent 98defdf commit 5a2a7e0

File tree

2 files changed

+0
-33
lines changed

2 files changed

+0
-33
lines changed

QRCodeGenLib/src/Include/QRCodeGenLib.inc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@
3838
{$DEFINE VCL_OR_LCL}
3939
{$ENDIF VCL}
4040

41-
// XE and Above
42-
{$IF CompilerVersion >= 22.0}
43-
{$DEFINE DELPHIXE_UP}
44-
{$IFEND}
45-
4641
{$ENDIF}
4742

4843
{========================== Common Compiler Settings ==========================}

QRCodeGenLib/src/Utils/QlpQRCodeGenLibTypes.pas

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -42,33 +42,6 @@ ENullReferenceQRCodeGenLibException = class(EQRCodeGenLibException);
4242
/// </summary>
4343
TQRCodeGenLibGenericArray<T> = array of T;
4444

45-
{$IFDEF DELPHIXE_UP}
46-
/// <summary>
47-
/// Represents a dynamic array of Int32.
48-
/// </summary>
49-
TQRCodeGenLibInt32Array = TArray<Int32>;
50-
51-
/// <summary>
52-
/// Represents a dynamic array of Boolean.
53-
/// </summary>
54-
TQRCodeGenLibBooleanArray = TArray<Boolean>;
55-
56-
/// <summary>
57-
/// Represents a dynamic array of String.
58-
/// </summary>
59-
TQRCodeGenLibStringArray = TArray<String>;
60-
61-
/// <summary>
62-
/// Represents a dynamic array of array of Byte.
63-
/// </summary>
64-
TQRCodeGenLibMatrixByteArray = TArray<TQRCodeGenLibByteArray>;
65-
66-
/// <summary>
67-
/// Represents a dynamic array of array of Int32.
68-
/// </summary>
69-
TQRCodeGenLibMatrixInt32Array = TArray<TQRCodeGenLibInt32Array>;
70-
71-
{$ELSE}
7245
/// <summary>
7346
/// Represents a dynamic array of Int32.
7447
/// </summary>
@@ -94,7 +67,6 @@ ENullReferenceQRCodeGenLibException = class(EQRCodeGenLibException);
9467
/// </summary>
9568
TQRCodeGenLibMatrixInt32Array = array of TQRCodeGenLibInt32Array;
9669

97-
{$ENDIF DELPHIXE_UP}
9870
TQRCodeGenLibColor =
9971
{$IF DEFINED(VCL_OR_LCL)}TColor{$ELSEIF DEFINED(FCL)}TFPColor{$ELSEIF DEFINED(FMX)}TAlphaColor{$IFEND VCL_OR_LCL};
10072
{$IFDEF FCL}

0 commit comments

Comments
 (0)