LazLogger: avoid "inline" warning for fpc versions not supporting it. Issue #39508

This commit is contained in:
Martin 2021-12-11 20:55:42 +01:00
parent 4eff151060
commit 189c64388e

View File

@ -288,7 +288,7 @@ function GetParamByName(const AName: String; AnIndex: Integer): string;
function GetDebugLoggerGroups: TLazLoggerLogGroupList; inline;
procedure SetDebugLoggerGroups(ALogGroups: TLazLoggerLogGroupList);
function GetDebugLogger: TLazLogger; inline;
function GetDebugLogger: TLazLogger; {$IfDef FPC_FULLVERSION >= 030300} inline; {$EndIf}
function GetExistingDebugLogger: TLazLogger; inline; // No Autocreate
procedure SetDebugLogger(ALogger: TLazLogger);