mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 18:49:11 +02:00
* Remove unused KnownArchitectures tryout
This commit is contained in:
parent
b9aeeaa6e3
commit
54dd32805e
@ -213,7 +213,6 @@ interface
|
|||||||
|
|
||||||
TFPCMake = class
|
TFPCMake = class
|
||||||
private
|
private
|
||||||
FKnownArchitectures: TStrings;
|
|
||||||
FStream : TStream;
|
FStream : TStream;
|
||||||
FFileName : string;
|
FFileName : string;
|
||||||
FCommentChars : TSysCharSet;
|
FCommentChars : TSysCharSet;
|
||||||
@ -273,7 +272,6 @@ interface
|
|||||||
property CommentChars:TSysCharSet read FCommentChars write FCommentChars;
|
property CommentChars:TSysCharSet read FCommentChars write FCommentChars;
|
||||||
property EmptyLines:Boolean read FEmptyLines write FEmptyLines;
|
property EmptyLines:Boolean read FEmptyLines write FEmptyLines;
|
||||||
property IncludeTargets:TTargetSet read FIncludeTargets write FIncludeTargets;
|
property IncludeTargets:TTargetSet read FIncludeTargets write FIncludeTargets;
|
||||||
Property KnownArchitectures : TStrings Read FKnownArchitectures;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function posidx(const substr,s : string;idx:integer):integer;
|
function posidx(const substr,s : string;idx:integer):integer;
|
||||||
@ -653,7 +651,6 @@ implementation
|
|||||||
for c:=low(tcpu) to high(tcpu) do
|
for c:=low(tcpu) to high(tcpu) do
|
||||||
for t:=low(tos) to high(tos) do
|
for t:=low(tos) to high(tos) do
|
||||||
FRequireList[c,t]:=TStringList.Create;
|
FRequireList[c,t]:=TStringList.Create;
|
||||||
FKnownArchitectures:=TStringList.Create;
|
|
||||||
FVariables:=TKeyValue.Create;
|
FVariables:=TKeyValue.Create;
|
||||||
FCommentChars:=[';','#'];
|
FCommentChars:=[';','#'];
|
||||||
FEmptyLines:=false;
|
FEmptyLines:=false;
|
||||||
@ -677,7 +674,6 @@ implementation
|
|||||||
for c:=low(tcpu) to high(tcpu) do
|
for c:=low(tcpu) to high(tcpu) do
|
||||||
for t:=low(tos) to high(tos) do
|
for t:=low(tos) to high(tos) do
|
||||||
FRequireList[c,t].Free;
|
FRequireList[c,t].Free;
|
||||||
FKnownArchitectures.Free;
|
|
||||||
FVariables.Free;
|
FVariables.Free;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user